Index: src/x64/lithium-codegen-x64.h |
diff --git a/src/x64/lithium-codegen-x64.h b/src/x64/lithium-codegen-x64.h |
index 580929637548aa47a5e2036f9a6f28fcc598ac18..e8576068307cc4d484d1dcd6a5b5dc9b9cc1f148 100644 |
--- a/src/x64/lithium-codegen-x64.h |
+++ b/src/x64/lithium-codegen-x64.h |
@@ -111,7 +111,7 @@ class LCodeGen BASE_EMBEDDED { |
void DoDeferredNumberTagD(LNumberTagD* instr); |
void DoDeferredNumberTagU(LNumberTagU* instr); |
void DoDeferredTaggedToI(LTaggedToI* instr); |
- void DoDeferredMathAbsTaggedHeapNumber(LUnaryMathOperation* instr); |
+ void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); |
void DoDeferredStackCheck(LStackCheck* instr); |
void DoDeferredRandom(LRandom* instr); |
void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); |
@@ -258,17 +258,7 @@ class LCodeGen BASE_EMBEDDED { |
uint32_t offset, |
uint32_t additional_index = 0); |
- // Specific math operations - used from DoUnaryMathOperation. |
- void EmitIntegerMathAbs(LUnaryMathOperation* instr); |
- void DoMathAbs(LUnaryMathOperation* instr); |
- void DoMathFloor(LUnaryMathOperation* instr); |
- void DoMathRound(LUnaryMathOperation* instr); |
- void DoMathSqrt(LUnaryMathOperation* instr); |
- void DoMathPowHalf(LUnaryMathOperation* instr); |
- void DoMathLog(LUnaryMathOperation* instr); |
- void DoMathTan(LUnaryMathOperation* instr); |
- void DoMathCos(LUnaryMathOperation* instr); |
- void DoMathSin(LUnaryMathOperation* instr); |
+ void EmitIntegerMathAbs(LMathAbs* instr); |
// Support for recording safepoint and position information. |
void RecordSafepoint(LPointerMap* pointers, |