Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index aa35e9d6b4094b06f6676bfd6c78c31f905d8849..1f85b4843dcf24b77684b3d8ca101d7de4e054b3 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -1272,9 +1272,6 @@ LInstruction* LChunkBuilder::DoUnaryMathOperation(HUnaryMathOperation* instr) { |
case kMathRound: return DoMathRound(instr); |
case kMathAbs: return DoMathAbs(instr); |
case kMathLog: return DoMathLog(instr); |
- case kMathSin: return DoMathSin(instr); |
- case kMathCos: return DoMathCos(instr); |
- case kMathTan: return DoMathTan(instr); |
case kMathExp: return DoMathExp(instr); |
case kMathSqrt: return DoMathSqrt(instr); |
case kMathPowHalf: return DoMathPowHalf(instr); |
@@ -1317,27 +1314,6 @@ LInstruction* LChunkBuilder::DoMathLog(HUnaryMathOperation* instr) { |
} |
-LInstruction* LChunkBuilder::DoMathSin(HUnaryMathOperation* instr) { |
- LOperand* input = UseFixedDouble(instr->value(), xmm1); |
- LMathSin* result = new(zone()) LMathSin(input); |
- return MarkAsCall(DefineFixedDouble(result, xmm1), instr); |
-} |
- |
- |
-LInstruction* LChunkBuilder::DoMathCos(HUnaryMathOperation* instr) { |
- LOperand* input = UseFixedDouble(instr->value(), xmm1); |
- LMathCos* result = new(zone()) LMathCos(input); |
- return MarkAsCall(DefineFixedDouble(result, xmm1), instr); |
-} |
- |
- |
-LInstruction* LChunkBuilder::DoMathTan(HUnaryMathOperation* instr) { |
- LOperand* input = UseFixedDouble(instr->value(), xmm1); |
- LMathTan* result = new(zone()) LMathTan(input); |
- return MarkAsCall(DefineFixedDouble(result, xmm1), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoMathExp(HUnaryMathOperation* instr) { |
ASSERT(instr->representation().IsDouble()); |
ASSERT(instr->value()->representation().IsDouble()); |