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

Unified Diff: src/IceConditionCodesX8632.h

Issue 1419903002: Subzero: Refactor x86 register definitions to use the alias mechanism. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix assembler unit tests. Fix register names. Code review changes. Rebase Created 5 years, 2 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 | « src/IceCompiler.cpp ('k') | src/IceConditionCodesX8664.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConditionCodesX8632.h
diff --git a/src/IceConditionCodesX8632.h b/src/IceConditionCodesX8632.h
index eb09687a9a8669bf338e34d0a12061dc0df8ecdd..e17bf695acc4c66b2f3fb2506a8defb75cd8bf70 100644
--- a/src/IceConditionCodesX8632.h
+++ b/src/IceConditionCodesX8632.h
@@ -29,7 +29,7 @@ public:
/// An enum of condition codes used for branches and cmov. The enum value
/// should match the value used to encode operands in binary instructions.
enum BrCond {
-#define X(tag, encode, opp, dump, emit) tag encode,
+#define X(val, encode, opp, dump, emit) val = encode,
ICEINSTX8632BR_TABLE
#undef X
Br_None
@@ -39,7 +39,7 @@ public:
/// value should match the value used to encode operands in binary
/// instructions.
enum CmppsCond {
-#define X(tag, emit) tag,
+#define X(val, emit) val,
ICEINSTX8632CMPPS_TABLE
#undef X
Cmpps_Invalid
« no previous file with comments | « src/IceCompiler.cpp ('k') | src/IceConditionCodesX8664.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698