Index: src/ia32/codegen-ia32.h |
=================================================================== |
--- src/ia32/codegen-ia32.h (revision 4002) |
+++ src/ia32/codegen-ia32.h (working copy) |
@@ -594,12 +594,15 @@ |
void GenerateNumberToString(ZoneList<Expression*>* args); |
// Fast support for Math.pow(). |
- void GeneratePow(ZoneList<Expression*>* args); |
+ void GenerateMathPow(ZoneList<Expression*>* args); |
// Fast call to transcendental functions. |
void GenerateMathSin(ZoneList<Expression*>* args); |
void GenerateMathCos(ZoneList<Expression*>* args); |
+ // Fast case for sqrt |
+ void GenerateMathSqrt(ZoneList<Expression*>* args); |
+ |
// Simple condition analysis. |
enum ConditionAnalysis { |
ALWAYS_TRUE, |