Revision: 6665 Author: [email protected] Date: Mon Feb 7 05:41:02 2011 Log: X64: Disable crankshaft if serializerion is enabled.
Review URL: http://codereview.chromium.org/6413017 http://code.google.com/p/v8/source/detail?r=6665 Modified: /branches/bleeding_edge/src/x64/cpu-x64.cc ======================================= --- /branches/bleeding_edge/src/x64/cpu-x64.cc Tue Dec 7 03:31:57 2010 +++ /branches/bleeding_edge/src/x64/cpu-x64.cc Mon Feb 7 05:41:02 2011 @@ -43,6 +43,9 @@ void CPU::Setup() { CpuFeatures::Probe(true); + if (Serializer::enabled()) { + V8::DisableCrankshaft(); + } } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
