Index: src/x64/assembler-x64.h |
diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h |
index 60b29e6475c1990cb41bc3361334c5b4df1c9c1d..9f5f850294141dd852544b26e098b40367c4fda8 100644 |
--- a/src/x64/assembler-x64.h |
+++ b/src/x64/assembler-x64.h |
@@ -629,7 +629,8 @@ class Assembler : public AssemblerBase { |
static const byte kJccShortPrefix = 0x70; |
static const byte kJncShortOpcode = kJccShortPrefix | not_carry; |
static const byte kJcShortOpcode = kJccShortPrefix | carry; |
- |
+ static const byte kJnzShortOpcode = kJccShortPrefix | not_zero; |
+ static const byte kJzShortOpcode = kJccShortPrefix | zero; |
// --------------------------------------------------------------------------- |