Index: runtime/vm/intermediate_language.cc |
=================================================================== |
--- runtime/vm/intermediate_language.cc (revision 7560) |
+++ runtime/vm/intermediate_language.cc (working copy) |
@@ -33,18 +33,6 @@ |
} |
-Instruction* PickTempInstr::Accept(FlowGraphVisitor* visitor) { |
- visitor->VisitPickTemp(this); |
- return successor_; |
-} |
- |
- |
-Instruction* TuckTempInstr::Accept(FlowGraphVisitor* visitor) { |
- visitor->VisitTuckTemp(this); |
- return successor_; |
-} |
- |
- |
Instruction* DoInstr::Accept(FlowGraphVisitor* visitor) { |
visitor->VisitDo(this); |
return successor_; |
@@ -172,16 +160,6 @@ |
} |
-intptr_t TuckTempInstr::InputCount() const { |
- return 0; |
-} |
- |
- |
-intptr_t PickTempInstr::InputCount() const { |
- return 0; |
-} |
- |
- |
intptr_t TargetEntryInstr::InputCount() const { |
return 0; |
} |