Index: src/arm/codegen-arm.cc |
diff --git a/src/arm/codegen-arm.cc b/src/arm/codegen-arm.cc |
index c8507428cd29bbbdb0fa6b9de802e1f8ef9d8993..0b268e7a8b05e44b04c2f8034765887a50623c97 100644 |
--- a/src/arm/codegen-arm.cc |
+++ b/src/arm/codegen-arm.cc |
@@ -50,10 +50,10 @@ double fast_exp_simulator(double x) { |
UnaryMathFunction CreateExpFunction() { |
- if (!FLAG_fast_math) return &exp; |
+ if (!FLAG_fast_math) return &std::exp; |
size_t actual_size; |
byte* buffer = static_cast<byte*>(OS::Allocate(1 * KB, &actual_size, true)); |
- if (buffer == NULL) return &exp; |
+ if (buffer == NULL) return &std::exp; |
ExternalReference::InitializeMathExpData(); |
MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size)); |