Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 5fb0e533b86848dafd045a68944039e0fca2eb0b..3de875b245dccb071637b855cd2478f525c68494 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -1722,19 +1722,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, d7); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) { |
ASSERT(instr->left()->representation().IsTagged()); |
ASSERT(instr->right()->representation().IsTagged()); |