Index: runtime/vm/intermediate_language_mips.cc |
diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc |
index 04713cd2f0f51a5329b3791f3277075e7473927d..c005041504d2b7ed7189c2d6b35d536c87b7e5e5 100644 |
--- a/runtime/vm/intermediate_language_mips.cc |
+++ b/runtime/vm/intermediate_language_mips.cc |
@@ -975,6 +975,7 @@ LocationSummary* NativeCallInstr::MakeLocationSummary(Zone* zone, |
void NativeCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
+ SetupNative(); |
__ Comment("NativeCallInstr"); |
Register result = locs()->out(0).reg(); |
@@ -993,7 +994,7 @@ void NativeCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
uword entry; |
const intptr_t argc_tag = NativeArguments::ComputeArgcTag(function()); |
const bool is_leaf_call = |
- (argc_tag & NativeArguments::AutoSetupScopeMask()) == 0; |
+ (argc_tag & NativeArguments::AutoSetupScopeMask()) == 0; |
const StubEntry* stub_entry; |
if (link_lazily()) { |
stub_entry = StubCode::CallBootstrapCFunction_entry(); |