| Index: src/x64/lithium-codegen-x64.cc
|
| diff --git a/src/x64/lithium-codegen-x64.cc b/src/x64/lithium-codegen-x64.cc
|
| index c6d5a147a76ac8e484273753421cb459158d7500..8a1b679a5c8701a8c493dc3547d7393138109332 100644
|
| --- a/src/x64/lithium-codegen-x64.cc
|
| +++ b/src/x64/lithium-codegen-x64.cc
|
| @@ -968,12 +968,6 @@ void LCodeGen::DoCallStub(LCallStub* instr) {
|
| CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| break;
|
| }
|
| - case CodeStub::TranscendentalCache: {
|
| - TranscendentalCacheStub stub(instr->transcendental_type(),
|
| - TranscendentalCacheStub::TAGGED);
|
| - CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
|
| - break;
|
| - }
|
| default:
|
| UNREACHABLE();
|
| }
|
| @@ -1904,7 +1898,7 @@ void LCodeGen::DoArithmeticD(LArithmeticD* instr) {
|
| __ movaps(xmm_scratch, left);
|
| ASSERT(right.is(xmm1));
|
| __ CallCFunction(
|
| - ExternalReference::double_fp_operation(Token::MOD, isolate()), 2);
|
| + ExternalReference::mod_two_doubles_operation(isolate()), 2);
|
| __ movaps(result, xmm_scratch);
|
| break;
|
| }
|
|
|