Revision: 19418
Author: [email protected]
Date: Mon Feb 17 15:46:29 2014 UTC
Log: build fix for 19415
[email protected]
BUG=
Review URL: https://codereview.chromium.org/169793002
http://code.google.com/p/v8/source/detail?r=19418
Modified:
/branches/bleeding_edge/test/cctest/test-code-stubs-a64.cc
=======================================
--- /branches/bleeding_edge/test/cctest/test-code-stubs-a64.cc Mon Feb 17
15:09:46 2014 UTC
+++ /branches/bleeding_edge/test/cctest/test-code-stubs-a64.cc Mon Feb 17
15:46:29 2014 UTC
@@ -137,9 +137,12 @@
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.