Index: test/cctest/test-macro-assembler-x64.cc |
=================================================================== |
--- test/cctest/test-macro-assembler-x64.cc (revision 15346) |
+++ test/cctest/test-macro-assembler-x64.cc (working copy) |
@@ -1131,7 +1131,7 @@ |
void TestSmiDiv(MacroAssembler* masm, Label* exit, int id, int x, int y) { |
bool division_by_zero = (y == 0); |
bool negative_zero = (x == 0 && y < 0); |
-#ifdef V8_TARGET_ARCH_X64 |
+#if V8_TARGET_ARCH_X64 |
bool overflow = (x == Smi::kMinValue && y < 0); // Safe approx. used. |
#else |
bool overflow = (x == Smi::kMinValue && y == -1); |