Commit 2af8a21b authored by titzer@chromium.org's avatar titzer@chromium.org

Fix build.

TBR=mstarzinger@chromium.org
BUG=

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

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24093 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 88923855
......@@ -3254,7 +3254,7 @@ TEST(RunChangeFloat64ToUint32_spilled) {
for (int i = 0; i < kNumInputs; i++) {
if (i % 2) {
input[i] = 100 + i + 2147483648;
input[i] = 100 + i + 2147483648u;
} else {
input[i] = 100 + i;
}
......@@ -3264,9 +3264,9 @@ TEST(RunChangeFloat64ToUint32_spilled) {
for (int i = 0; i < kNumInputs; i++) {
if (i % 2) {
CHECK_EQ(result[i], 100 + i + 2147483648);
CHECK_UINT32_EQ(result[i], static_cast<uint32_t>(100 + i + 2147483648u));
} else {
CHECK_EQ(result[i], 100 + i);
CHECK_UINT32_EQ(result[i], static_cast<uint32_t>(100 + i));
}
}
}
......
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