Index: src/mips/macro-assembler-mips.cc |
diff --git a/src/mips/macro-assembler-mips.cc b/src/mips/macro-assembler-mips.cc |
index f5ed33076594ca8c0d4165047c22acfb1479cac3..86781d4ab2c5af3a1dcea7c20d1970c8317c3ad5 100644 |
--- a/src/mips/macro-assembler-mips.cc |
+++ b/src/mips/macro-assembler-mips.cc |
@@ -3678,33 +3678,6 @@ void MacroAssembler::InvokeCode(Register code, |
} |
-void MacroAssembler::InvokeCode(Handle<Code> code, |
- const ParameterCount& expected, |
- const ParameterCount& actual, |
- RelocInfo::Mode rmode, |
- InvokeFlag flag) { |
- // You can't call a function without a valid frame. |
- ASSERT(flag == JUMP_FUNCTION || has_frame()); |
- |
- Label done; |
- |
- bool definitely_mismatches = false; |
- InvokePrologue(expected, actual, code, no_reg, |
- &done, &definitely_mismatches, flag, |
- NullCallWrapper()); |
- if (!definitely_mismatches) { |
- if (flag == CALL_FUNCTION) { |
- Call(code, rmode); |
- } else { |
- Jump(code, rmode); |
- } |
- // Continue here if InvokePrologue does handle the invocation due to |
- // mismatched parameter counts. |
- bind(&done); |
- } |
-} |
- |
- |
void MacroAssembler::InvokeFunction(Register function, |
const ParameterCount& actual, |
InvokeFlag flag, |