Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index edb1206b01e84ff1148d1cc66970d8a5b383ae86..fe9b76a3880fb01bac2cd3f1e9a8a2a3e4881cb5 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -1642,19 +1642,6 @@ LInstruction* LChunkBuilder::DoPower(HPower* instr) { |
} |
-LInstruction* LChunkBuilder::DoRandom(HRandom* instr) { |
- ASSERT(instr->representation().IsDouble()); |
- ASSERT(instr->global_object()->representation().IsTagged()); |
- LOperand* global_object = UseTempRegister(instr->global_object()); |
- LOperand* scratch = TempRegister(); |
- LOperand* scratch2 = TempRegister(); |
- LOperand* scratch3 = TempRegister(); |
- LRandom* result = new(zone()) LRandom( |
- global_object, scratch, scratch2, scratch3); |
- return DefineFixedDouble(result, f0); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) { |
ASSERT(instr->left()->representation().IsTagged()); |
ASSERT(instr->right()->representation().IsTagged()); |