Reviewers: jochen,

Message:
Committed patchset #1 manually as r19418 (tree was closed).

Description:
build fix for 19415

[email protected]

BUG=

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

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

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

Affected files (+5, -2 lines):
  M test/cctest/test-code-stubs-a64.cc


Index: test/cctest/test-code-stubs-a64.cc
diff --git a/test/cctest/test-code-stubs-a64.cc b/test/cctest/test-code-stubs-a64.cc index 5d5d3702edd74ccc20594be60f339cb2f817b324..5f82d05c9f5c8394335890730719c84af3aab8a8 100644
--- a/test/cctest/test-code-stubs-a64.cc
+++ b/test/cctest/test-code-stubs-a64.cc
@@ -137,9 +137,12 @@ static Isolate* GetIsolateFrom(LocalContext* context) {
 int32_t RunGeneratedCodeCallWrapper(ConvertDToIFunc func,
                                     double from) {
 #ifdef USE_SIMULATOR
+  Simulator::CallArgument args[] = {
+      Simulator::CallArgument(from),
+      Simulator::CallArgument::End()
+  };
   return Simulator::current(Isolate::Current())->CallInt64(
-      FUNCTION_ADDR(func), Simulator::CallArgument(from),
-      Simulator::CallArgument::End());
+      FUNCTION_ADDR(func), args);
 #else
   return (*func)(from);
 #endif


--
--
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/groups/opt_out.

Reply via email to