Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 7fdd079cd2fc212edcb64b0ffb4e0874165361ec..c937f899b8e98d441a48d4f276d90e0e0307cfa7 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -1926,19 +1926,6 @@ LInstruction* LChunkBuilder::DoCheckInstanceType(HCheckInstanceType* instr) { |
} |
-LInstruction* LChunkBuilder::DoCheckPrototypeMaps(HCheckPrototypeMaps* instr) { |
- LUnallocated* temp1 = NULL; |
- LOperand* temp2 = NULL; |
- if (!instr->CanOmitPrototypeChecks()) { |
- temp1 = TempRegister(); |
- temp2 = TempRegister(); |
- } |
- LCheckPrototypeMaps* result = new(zone()) LCheckPrototypeMaps(temp1, temp2); |
- if (instr->CanOmitPrototypeChecks()) return result; |
- return AssignEnvironment(result); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoCheckFunction(HCheckFunction* instr) { |
LOperand* value = UseRegisterAtStart(instr->value()); |
return AssignEnvironment(new(zone()) LCheckFunction(value)); |