Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index e3b64b79692e836c295cbef9f8489215626df112..2decbe6d606827e69aa65fa0e8790ac4c6a0dc55 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -2192,25 +2192,6 @@ LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) { |
} |
-LInstruction* LChunkBuilder::DoLoadNamedFieldPolymorphic( |
- HLoadNamedFieldPolymorphic* instr) { |
- ASSERT(instr->representation().IsTagged()); |
- if (instr->need_generic()) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* obj = UseFixed(instr->object(), edx); |
- LLoadNamedFieldPolymorphic* result = |
- new(zone()) LLoadNamedFieldPolymorphic(context, obj); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
- } else { |
- LOperand* context = UseAny(instr->context()); // Not actually used. |
- LOperand* obj = UseRegisterAtStart(instr->object()); |
- LLoadNamedFieldPolymorphic* result = |
- new(zone()) LLoadNamedFieldPolymorphic(context, obj); |
- return AssignEnvironment(DefineAsRegister(result)); |
- } |
-} |
- |
- |
LInstruction* LChunkBuilder::DoLoadNamedGeneric(HLoadNamedGeneric* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
LOperand* object = UseFixed(instr->object(), edx); |