Index: vm/intermediate_language.cc |
=================================================================== |
--- vm/intermediate_language.cc (revision 9014) |
+++ vm/intermediate_language.cc (working copy) |
@@ -170,6 +170,23 @@ |
} |
+intptr_t ParallelMoveInstr::InputCount() const { |
+ UNREACHABLE(); |
+ return 0; |
+} |
+ |
+ |
+Value* ParallelMoveInstr::InputAt(intptr_t i) const { |
+ UNREACHABLE(); |
+ return NULL; |
+} |
+ |
+ |
+void ParallelMoveInstr::SetInputAt(intptr_t i, Value* value) { |
+ UNREACHABLE(); |
+} |
+ |
+ |
intptr_t ReThrowInstr::InputCount() const { |
return 2; |
} |