| Index: src/crankshaft/arm/lithium-codegen-arm.cc
|
| diff --git a/src/crankshaft/arm/lithium-codegen-arm.cc b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| index bcf25ccdd2dd89b1d773c254ed6e639f79617caf..0a1bfbf96e1633cdfcc9d0be99317bddbb168667 100644
|
| --- a/src/crankshaft/arm/lithium-codegen-arm.cc
|
| +++ b/src/crankshaft/arm/lithium-codegen-arm.cc
|
| @@ -671,7 +671,7 @@ void LCodeGen::CallCodeGeneric(Handle<Code> code,
|
| // Block literal pool emission to ensure nop indicating no inlined smi code
|
| // is in the correct position.
|
| Assembler::BlockConstPoolScope block_const_pool(masm());
|
| - __ Call(code, mode, TypeFeedbackId::None(), al, storage_mode, false);
|
| + __ Call(code, mode, al, storage_mode, false);
|
| RecordSafepointWithLazyDeopt(instr, safepoint_mode);
|
|
|
| // Signal that we don't inline smi code before these stubs in the
|
| @@ -3558,10 +3558,10 @@ void LCodeGen::DoCallWithDescriptor(LCallWithDescriptor* instr) {
|
| PlatformInterfaceDescriptor* call_descriptor =
|
| instr->descriptor().platform_specific_descriptor();
|
| if (call_descriptor != NULL) {
|
| - __ Call(code, RelocInfo::CODE_TARGET, TypeFeedbackId::None(), al,
|
| + __ Call(code, RelocInfo::CODE_TARGET, al,
|
| call_descriptor->storage_mode());
|
| } else {
|
| - __ Call(code, RelocInfo::CODE_TARGET, TypeFeedbackId::None(), al);
|
| + __ Call(code, RelocInfo::CODE_TARGET, al);
|
| }
|
| } else {
|
| DCHECK(instr->target()->IsRegister());
|
|
|