Index: runtime/vm/intermediate_language_ia32.cc |
=================================================================== |
--- runtime/vm/intermediate_language_ia32.cc (revision 45190) |
+++ runtime/vm/intermediate_language_ia32.cc (working copy) |
@@ -6526,6 +6526,17 @@ |
} |
+LocationSummary* StopInstr::MakeLocationSummary(Zone* zone, |
+ bool opt) const { |
+ return new(zone) LocationSummary(zone, 0, 0, LocationSummary::kNoCall); |
+} |
+ |
+ |
+void StopInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+ __ Stop(message()); |
+} |
+ |
+ |
void GraphEntryInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
if (!compiler->CanFallThroughTo(normal_entry())) { |
__ jmp(compiler->GetJumpLabel(normal_entry())); |