Revision: 24093
Author:   [email protected]
Date:     Fri Sep 19 14:40:08 2014 UTC
Log:      Fix build.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/591453002
https://code.google.com/p/v8/source/detail?r=24093

Modified:
 /branches/bleeding_edge/test/cctest/compiler/test-run-machops.cc

=======================================
--- /branches/bleeding_edge/test/cctest/compiler/test-run-machops.cc Fri Sep 19 14:25:13 2014 UTC +++ /branches/bleeding_edge/test/cctest/compiler/test-run-machops.cc Fri Sep 19 14:40:08 2014 UTC
@@ -3254,7 +3254,7 @@

   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 @@

   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));
     }
   }
 }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to