Index: src/compiler/instruction-selector.cc |
diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc |
index 5d2200fcba296685fcaddd769a6b3d3a86c4a385..77f3896fb0c7c81cfabfa1487f6e70fcb261120d 100644 |
--- a/src/compiler/instruction-selector.cc |
+++ b/src/compiler/instruction-selector.cc |
@@ -1944,14 +1944,6 @@ void InstructionSelector::EmitLookupSwitch(const SwitchInfo& sw, |
Emit(kArchLookupSwitch, 0, nullptr, input_count, inputs, 0, nullptr); |
} |
-void InstructionSelector::VisitStackSlot(Node* node) { |
- int size = StackSlotSizeOf(node->op()); |
- int slot = frame_->AllocateSpillSlot(size); |
- OperandGenerator g(this); |
- |
- Emit(kArchStackSlot, g.DefineAsRegister(node), |
- sequence()->AddImmediate(Constant(slot)), 0, nullptr); |
-} |
void InstructionSelector::VisitBitcastTaggedToWord(Node* node) { |
EmitIdentity(node); |