Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: src/IceConditionCodesARM32.h

Issue 1694533002: Add move vector to the integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add test for vector moves. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/IceInstARM32.cpp » ('j') | src/IceInstARM32.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConditionCodesARM32.h
diff --git a/src/IceConditionCodesARM32.h b/src/IceConditionCodesARM32.h
index f13776316a3f365b71df2ed5868ea625dd5d34a5..1ad3dbd05470fcd15d9ad8e5618c5382c1b7ddea 100644
--- a/src/IceConditionCodesARM32.h
+++ b/src/IceConditionCodesARM32.h
@@ -35,6 +35,8 @@ public:
};
static bool isDefined(Cond C) { return C != kNone; }
+
+ static bool isUnconditional(Cond C) { return !isDefined(C) || C == AL; }
John 2016/02/11 23:59:54 Why is this not a global function in an unnamed na
};
} // end of namespace Ice
« no previous file with comments | « no previous file | src/IceInstARM32.cpp » ('j') | src/IceInstARM32.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698