Index: src/crankshaft/mips/lithium-mips.cc |
diff --git a/src/crankshaft/mips/lithium-mips.cc b/src/crankshaft/mips/lithium-mips.cc |
index 5533b8f59d68ba73461c5bb858dd4159e4cf00a8..1fe2d65fd2f56b9d7d3f75b57fcec4894c62c000 100644 |
--- a/src/crankshaft/mips/lithium-mips.cc |
+++ b/src/crankshaft/mips/lithium-mips.cc |
@@ -1946,15 +1946,6 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
- LOperand* context = UseFixed(instr->context(), cp); |
- LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
- |
- LLoadGlobalGeneric* result = new (zone()) LLoadGlobalGeneric(context, vector); |
- return MarkAsCall(DefineFixed(result, v0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { |
LOperand* context = UseRegisterAtStart(instr->value()); |
LInstruction* result = |