Revision: 24440
Author:   [email protected]
Date:     Tue Oct  7 16:00:44 2014 UTC
Log:      Fix compilation on win64

[email protected]
LOG=n
BUG=none

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

Modified:
 /branches/bleeding_edge/test/cctest/compiler/test-operator.cc

=======================================
--- /branches/bleeding_edge/test/cctest/compiler/test-operator.cc Tue Oct 7 13:30:28 2014 UTC +++ /branches/bleeding_edge/test/cctest/compiler/test-operator.cc Tue Oct 7 16:00:44 2014 UTC
@@ -29,10 +29,10 @@

 TEST(TestSimpleOperatorHash) {
   SimpleOperator op1(17, Operator::kNoProperties, 0, 0, "Another");
-  CHECK_EQ(17, op1.HashCode());
+  CHECK_EQ(17, static_cast<int>(op1.HashCode()));

   SimpleOperator op2(18, Operator::kNoProperties, 0, 0, "Falsch");
-  CHECK_EQ(18, op2.HashCode());
+  CHECK_EQ(18, static_cast<int>(op2.HashCode()));
 }


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