Revision: 19226
Author: [email protected]
Date: Mon Feb 10 13:56:59 2014 UTC
Log: Fix NoTrackDoubleFieldsForSerializerScope.
BUG=v8:3143
LOG=N
[email protected]
Review URL: https://codereview.chromium.org/144473005
http://code.google.com/p/v8/source/detail?r=19226
Modified:
/branches/bleeding_edge/src/bootstrapper.cc
=======================================
--- /branches/bleeding_edge/src/bootstrapper.cc Fri Feb 7 15:29:18 2014 UTC
+++ /branches/bleeding_edge/src/bootstrapper.cc Mon Feb 10 13:56:59 2014 UTC
@@ -2566,7 +2566,9 @@
}
}
~NoTrackDoubleFieldsForSerializerScope() {
- FLAG_track_double_fields = flag_;
+ if (Serializer::enabled()) {
+ FLAG_track_double_fields = flag_;
+ }
}
private:
--
--
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.