| Index: runtime/vm/opt_code_generator_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/opt_code_generator_ia32.cc (revision 8700)
|
| +++ runtime/vm/opt_code_generator_ia32.cc (working copy)
|
| @@ -2741,7 +2741,7 @@
|
| // if the argument is double, smi or something else.
|
| bool OptimizingCodeGenerator::TryInlineStaticCall(StaticCallNode* node) {
|
| Recognizer::Kind recognized = Recognizer::RecognizeKind(node->function());
|
| - if (false && recognized == Recognizer::kMathSqrt) {
|
| + if (recognized == Recognizer::kMathSqrt) {
|
| Label smi_to_double, call_method, done;
|
| __ movl(EAX, Address(ESP, 0));
|
| CheckIfDoubleOrSmi(EAX, EBX, &smi_to_double, &call_method);
|
|
|