From: bmeurer@chromium.org Date: Fri, 29 Aug 2014 05:45:16 +0000 (+0000) Subject: Fix windows build. X-Git-Tag: upstream/4.7.83~7289 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=804ef93d998a0275b77a27d2190388d3da95e750;p=platform%2Fupstream%2Fv8.git Fix windows build. TBR=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/524533002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23508 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/test/cctest/compiler/test-run-properties.cc b/test/cctest/compiler/test-run-properties.cc index 2ba9576..8bf0fe9 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(kValues[i]); double value_b = static_cast(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(i)), + T.Val(static_cast(j))); } } }