Index: src/x64/assembler-x64.h |
=================================================================== |
--- src/x64/assembler-x64.h (revision 2337) |
+++ src/x64/assembler-x64.h (working copy) |
@@ -522,6 +522,10 @@ |
immediate_arithmetic_op_32(0x0, dst, src); |
} |
+ void addl(const Operand& dst, Immediate src) { |
+ immediate_arithmetic_op_32(0x0, dst, src); |
+ } |
+ |
void addq(Register dst, const Operand& src) { |
arithmetic_op(0x03, dst, src); |
} |
@@ -539,10 +543,6 @@ |
immediate_arithmetic_op(0x0, dst, src); |
} |
- void addl(const Operand& dst, Immediate src) { |
- immediate_arithmetic_op_32(0x0, dst, src); |
- } |
- |
void cmpb(Register dst, Immediate src) { |
immediate_arithmetic_op_8(0x7, dst, src); |
} |
@@ -723,6 +723,10 @@ |
immediate_arithmetic_op_32(0x5, dst, src); |
} |
+ void subl(Register dst, Immediate src) { |
+ immediate_arithmetic_op_32(0x5, dst, src); |
+ } |
+ |
void testb(Register reg, Immediate mask); |
void testb(const Operand& op, Immediate mask); |
void testl(Register reg, Immediate mask); |