Index: src/ia32/assembler-ia32.cc |
diff --git a/src/ia32/assembler-ia32.cc b/src/ia32/assembler-ia32.cc |
index 407f93eee1d44c9f76e84005c415a094aa423a32..8438e077695296877fde93d70990ca7969b89e17 100644 |
--- a/src/ia32/assembler-ia32.cc |
+++ b/src/ia32/assembler-ia32.cc |
@@ -89,13 +89,13 @@ const char* IntelDoubleRegister::AllocationIndexToString(int index) { |
} |
-void CpuFeatures::Probe() { |
+void CpuFeatures::Probe(bool serializer_enabled) { |
ASSERT(!initialized_); |
ASSERT(supported_ == 0); |
#ifdef DEBUG |
initialized_ = true; |
#endif |
- if (Serializer::enabled()) { |
+ if (serializer_enabled) { |
supported_ |= OS::CpuFeaturesImpliedByPlatform(); |
return; // No features if we might serialize. |
} |