| Index: src/ia32/lithium-ia32.cc
 | 
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
 | 
| index 278d60030464f8ba83de548fcc6196ed7cb11342..4a815e7fc4751b131e6bf4a281651163580536a8 100644
 | 
| --- a/src/ia32/lithium-ia32.cc
 | 
| +++ b/src/ia32/lithium-ia32.cc
 | 
| @@ -1699,19 +1699,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, xmm1);
 | 
| -}
 | 
| -
 | 
| -
 | 
|  LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) {
 | 
|    ASSERT(instr->left()->representation().IsSmiOrTagged());
 | 
|    ASSERT(instr->right()->representation().IsSmiOrTagged());
 | 
| 
 |