Index: test/cctest/compiler/test-run-properties.cc |
diff --git a/test/cctest/compiler/test-run-properties.cc b/test/cctest/compiler/test-run-properties.cc |
index 2ba95764129a6c920284b0eeafce9b77785640df..8bf0fe9c35f7cc4126547c7219fb92e9fe9afdfa 100644 |
--- a/test/cctest/compiler/test-run-properties.cc |
+++ b/test/cctest/compiler/test-run-properties.cc |
@@ -50,7 +50,8 @@ static void TypedArrayLoadHelper(const char* array_type) { |
double value_a = static_cast<U>(kValues[i]); |
double value_b = static_cast<U>(kValues[j]); |
double expected = value_a + value_b; |
- T.CheckCall(T.Val(expected), T.Val(i), T.Val(j)); |
+ T.CheckCall(T.Val(expected), T.Val(static_cast<double>(i)), |
+ T.Val(static_cast<double>(j))); |
} |
} |
} |