Index: runtime/vm/intermediate_language_x64.cc |
diff --git a/runtime/vm/intermediate_language_x64.cc b/runtime/vm/intermediate_language_x64.cc |
index 069af17d663ea66f3098ddec0b250109c0581b64..105ac43744d55fb73dea2dc7630a8c9a67b84f10 100644 |
--- a/runtime/vm/intermediate_language_x64.cc |
+++ b/runtime/vm/intermediate_language_x64.cc |
@@ -5555,6 +5555,61 @@ void ShiftMintOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
} |
+LocationSummary* BinaryUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void BinaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* ShiftUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void ShiftUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* UnaryUint32OpInstr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void UnaryUint32OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* UnboxUint32Instr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void UnboxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
+LocationSummary* BoxUint32Instr::MakeLocationSummary(Isolate* isolate, |
+ bool opt) const { |
+ UNIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+ |
+void BoxUint32Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+} |
+ |
+ |
LocationSummary* ThrowInstr::MakeLocationSummary(Isolate* isolate, |
bool opt) const { |
return new(isolate) LocationSummary(isolate, 0, 0, LocationSummary::kCall); |