Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 53ba309e61a3f5274121e3f0afc5ff87274baea1..8117f5ebb425796f51b6a0b67faff850428d324b 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -1724,19 +1724,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()); |