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 7ae8bc0f9c4cfcb14e94add68c2b81156b59081e..872c0d8b7bf547352face30ba1d419b8ebae98fc 100644 |
--- a/test/cctest/compiler/test-run-machops.cc |
+++ b/test/cctest/compiler/test-run-machops.cc |
@@ -5372,24 +5372,6 @@ |
} |
-TEST(RunTruncateFloat32ToInt64) { |
- BufferedRawMachineAssemblerTester<int64_t> m(kMachFloat32); |
- m.Return(m.TruncateFloat32ToInt64(m.Parameter(0))); |
- |
- FOR_INT64_INPUTS(i) { |
- float input = static_cast<float>(*i); |
- if (input < 9223372036854775808.0 && input > -9223372036854775809.0) { |
- CHECK_EQ(static_cast<int64_t>(input), m.Call(input)); |
- } |
- } |
- FOR_FLOAT32_INPUTS(j) { |
- if (*j < 9223372036854775808.0 && *j > -9223372036854775809.0) { |
- CHECK_EQ(static_cast<int64_t>(*j), m.Call(*j)); |
- } |
- } |
-} |
- |
- |
TEST(RunTruncateFloat64ToInt64) { |
BufferedRawMachineAssemblerTester<int64_t> m(kMachFloat64); |
m.Return(m.TruncateFloat64ToInt64(m.Parameter(0))); |