| Index: src/ia32/lithium-codegen-ia32.cc | 
| =================================================================== | 
| --- src/ia32/lithium-codegen-ia32.cc	(revision 5989) | 
| +++ src/ia32/lithium-codegen-ia32.cc	(working copy) | 
| @@ -2235,13 +2235,6 @@ | 
| } | 
|  | 
|  | 
| -void LCodeGen::DoMathLog(LUnaryMathOperation* instr) { | 
| -  ASSERT(ToDoubleRegister(instr->result()).is(xmm1)); | 
| -  TranscendentalCacheSSE2Stub stub(TranscendentalCache::LOG); | 
| -  CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | 
| -} | 
| - | 
| - | 
| void LCodeGen::DoUnaryMathOperation(LUnaryMathOperation* instr) { | 
| switch (instr->op()) { | 
| case kMathAbs: | 
| @@ -2259,10 +2252,6 @@ | 
| case kMathPowHalf: | 
| DoMathPowHalf(instr); | 
| break; | 
| -    case kMathLog: | 
| -      DoMathLog(instr); | 
| -      break; | 
| - | 
| default: | 
| UNREACHABLE(); | 
| } | 
|  |