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

Unified Diff: src/IceConditionCodesX8664.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/IceConditionCodesX8632.h ('k') | src/IceConverter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConditionCodesX8664.h
diff --git a/src/IceConditionCodesX8664.h b/src/IceConditionCodesX8664.h
index d1d9dd8aeb342ac49cf65650690261cdee231751..1875beb4555b21e885b0d2c246b85986d8c2a671 100644
--- a/src/IceConditionCodesX8664.h
+++ b/src/IceConditionCodesX8664.h
@@ -25,7 +25,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,
ICEINSTX8664BR_TABLE
#undef X
Br_None
@@ -35,7 +35,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,
ICEINSTX8664CMPPS_TABLE
#undef X
Cmpps_Invalid
« no previous file with comments | « src/IceConditionCodesX8632.h ('k') | src/IceConverter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698