Reviewers: Michael Starzinger,

Message:
Committed patchset #1 manually as 23508.

Description:
Fix windows build.

[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=23508

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

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

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


Index: test/cctest/compiler/test-run-properties.cc
diff --git a/test/cctest/compiler/test-run-properties.cc b/test/cctest/compiler/test-run-properties.cc index 2ba95764129a6c920284b0eeafce9b77785640df..8bf0fe9c35f7cc4126547c7219fb92e9fe9afdfa 100644
--- a/test/cctest/compiler/test-run-properties.cc
+++ b/test/cctest/compiler/test-run-properties.cc
@@ -50,7 +50,8 @@ static void TypedArrayLoadHelper(const char* array_type) {
       double value_a = static_cast<U>(kValues[i]);
       double value_b = static_cast<U>(kValues[j]);
       double expected = value_a + value_b;
-      T.CheckCall(T.Val(expected), T.Val(i), T.Val(j));
+      T.CheckCall(T.Val(expected), T.Val(static_cast<double>(i)),
+                  T.Val(static_cast<double>(j)));
     }
   }
 }


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