diff options
author | Roland Levillain <rpl@google.com> | 2016-09-19 16:59:14 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-09-19 16:59:15 +0000 |
commit | ec88abde5944eaa94e1299cc2ec040b51977b1f4 (patch) | |
tree | c3692184a4999b97ee36decf88c688786640e598 /compiler/optimizing/code_generator_mips.cc | |
parent | 8cb366a7ba8f02094c7c3bd21e217fff52f6ad17 (diff) | |
parent | 91a6516103b8bf8bb75c3a2840cbdec7521e74a7 (diff) |
Merge "Remove the `CanTriggerGC` side-effects on a few instructions."
Diffstat (limited to 'compiler/optimizing/code_generator_mips.cc')
-rw-r--r-- | compiler/optimizing/code_generator_mips.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_mips.cc b/compiler/optimizing/code_generator_mips.cc index aa81bad3de..b2e75952a0 100644 --- a/compiler/optimizing/code_generator_mips.cc +++ b/compiler/optimizing/code_generator_mips.cc @@ -1224,7 +1224,7 @@ void CodeGeneratorMIPS::InvokeRuntime(QuickEntrypointEnum entrypoint, HInstruction* instruction, uint32_t dex_pc, SlowPathCode* slow_path) { - ValidateInvokeRuntime(instruction, slow_path); + ValidateInvokeRuntime(entrypoint, instruction, slow_path); bool reordering = __ SetReorder(false); __ LoadFromOffset(kLoadWord, T9, TR, GetThreadOffset<kMipsPointerSize>(entrypoint).Int32Value()); __ Jalr(T9); |