Chromium Code Reviews| Index: test/cctest/compiler/test-run-machops.cc |
| diff --git a/test/cctest/compiler/test-run-machops.cc b/test/cctest/compiler/test-run-machops.cc |
| index 2bfe1244beed38b15c6b7cb27fa0073503f3ac2d..bcc6e82bedf97d72e85af3cda5e986d1576c0e70 100644 |
| --- a/test/cctest/compiler/test-run-machops.cc |
| +++ b/test/cctest/compiler/test-run-machops.cc |
| @@ -4,8 +4,8 @@ |
| #include <cmath> |
| #include <functional> |
| +#include <iostream> |
|
miran.karic
2016/04/04 14:36:03
Is this needed?
Marija Antic
2016/04/05 07:50:04
Done.
|
| #include <limits> |
| - |
| #include "src/base/bits.h" |
| #include "src/base/utils/random-number-generator.h" |
| #include "src/codegen.h" |
| @@ -4201,7 +4201,7 @@ uint64_t ToInt64(uint32_t low, uint32_t high) { |
| return (static_cast<uint64_t>(high) << 32) | static_cast<uint64_t>(low); |
| } |
| -#if V8_TARGET_ARCH_32_BIT && !V8_TARGET_ARCH_MIPS && !V8_TARGET_ARCH_X87 |
| +#if V8_TARGET_ARCH_32_BIT && !V8_TARGET_ARCH_X87 |
| TEST(RunInt32PairAdd) { |
| BufferedRawMachineAssemblerTester<int32_t> m( |
| MachineType::Uint32(), MachineType::Uint32(), MachineType::Uint32(), |