| Index: src/ia32/assembler-ia32.h
|
| diff --git a/src/ia32/assembler-ia32.h b/src/ia32/assembler-ia32.h
|
| index 929b485ebfb9eedbef085c061aadc572fd28334e..9dc637b754c286c814187bdc68a95f7d7b9568ec 100644
|
| --- a/src/ia32/assembler-ia32.h
|
| +++ b/src/ia32/assembler-ia32.h
|
| @@ -640,6 +640,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;
|
|
|
| // ---------------------------------------------------------------------------
|
| // Code generation
|
|
|