Reviewers: Benedikt Meurer,

Description:
Fix compilation on win64

[email protected]
LOG=n
BUG=none

Please review this at https://codereview.chromium.org/613093004/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -2 lines):
  M test/cctest/compiler/test-operator.cc


Index: test/cctest/compiler/test-operator.cc
diff --git a/test/cctest/compiler/test-operator.cc b/test/cctest/compiler/test-operator.cc index 8fe415902b6cb91b03a09d1b6a3242613a71ea6a..37cf3a349aa51b9bf60ce377980cb84b4e203bef 100644
--- a/test/cctest/compiler/test-operator.cc
+++ b/test/cctest/compiler/test-operator.cc
@@ -29,10 +29,10 @@ TEST(TestOperatorMnemonic) {

 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