Reviewers: Benedikt Meurer, ulan,

Message:
Init the Simulator with stdout instead of NULL to be able to trap (for example
with --trap-on-deopt).

Description:
ARM64: fix simulator constructor

BUG=
[email protected], [email protected]

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

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

Affected files (+1, -1 lines):
  M src/arm64/simulator-arm64.cc


Index: src/arm64/simulator-arm64.cc
diff --git a/src/arm64/simulator-arm64.cc b/src/arm64/simulator-arm64.cc
index b24c9a692b0fe932b308dfbd6e1943876ef2c40e..41d20a5bba01fbc8e0741ca938a5a82aa978aed2 100644
--- a/src/arm64/simulator-arm64.cc
+++ b/src/arm64/simulator-arm64.cc
@@ -392,7 +392,7 @@ Simulator::Simulator()
       last_debugger_input_(NULL),
       log_parameters_(NO_PARAM),
       isolate_(NULL) {
-  Init(NULL);
+  Init(stdout);
   CHECK(!FLAG_trace_sim && !FLAG_log_instruction_stats);
 }



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