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

Unified Diff: runtime/vm/constants_x64.h

Issue 2937933002: Reduce copying, redundancy & repetition for codegen of comparison instructions (Closed)
Patch Set: Created 3 years, 6 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
Index: runtime/vm/constants_x64.h
diff --git a/runtime/vm/constants_x64.h b/runtime/vm/constants_x64.h
index 3c24e0bd8859e77f0d09d155a0a50d2c3814c47d..09fd07cc4a835262876a1afc8d81a2fb5c8fdb2e 100644
--- a/runtime/vm/constants_x64.h
+++ b/runtime/vm/constants_x64.h
@@ -147,7 +147,9 @@ enum Condition {
NEGATIVE = SIGN,
POSITIVE = NOT_SIGN,
CARRY = BELOW,
- NOT_CARRY = ABOVE_EQUAL
+ NOT_CARRY = ABOVE_EQUAL,
+
+ INVALID_CONDITION = 16
};
#define R(reg) (1 << (reg))

Powered by Google App Engine
This is Rietveld 408576698