Commit 0403fd86 authored by akos.palfi's avatar akos.palfi Committed by Commit bot

Fix gcc 4.9.2 signed-compare error.

BUG=

Review URL: https://codereview.chromium.org/1456543003

Cr-Commit-Position: refs/heads/master@{#32053}
parent 5bf360ef
......@@ -5459,7 +5459,7 @@ TEST(RunRoundUint64ToFloat64) {
BufferedRawMachineAssemblerTester<double> m(kMachUint64);
m.Return(m.RoundUint64ToFloat64(m.Parameter(0)));
for (int i = 0; i < arraysize(values); i++) {
for (size_t i = 0; i < arraysize(values); i++) {
CHECK_EQ(bit_cast<double>(values[i].expected), m.Call(values[i].input));
}
}
......@@ -5549,7 +5549,7 @@ TEST(RunRoundUint64ToFloat32) {
BufferedRawMachineAssemblerTester<float> m(kMachUint64);
m.Return(m.RoundUint64ToFloat32(m.Parameter(0)));
for (int i = 0; i < arraysize(values); i++) {
for (size_t i = 0; i < arraysize(values); i++) {
CHECK_EQ(bit_cast<float>(values[i].expected), m.Call(values[i].input));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment