diff options
author | Vladimir Marko <vmarko@google.com> | 2014-12-09 11:09:39 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-12-09 11:09:40 +0000 |
commit | 6bb3919e4413ad50f9b7e009829bba292b609e03 (patch) | |
tree | 2b99a452959b6380ca5117a64648e83d63c9d6e2 /compiler/dex/quick/mir_to_lir.h | |
parent | d1780b98e5b58208e6836c8520dad2a2dadfe322 (diff) | |
parent | 8b858e16563ebf8e522df026a6ab409f1bd9b3de (diff) | |
download | art-6bb3919e4413ad50f9b7e009829bba292b609e03.zip art-6bb3919e4413ad50f9b7e009829bba292b609e03.tar.gz art-6bb3919e4413ad50f9b7e009829bba292b609e03.tar.bz2 |
Merge "Quick: Redefine the notion of back-egdes."
Diffstat (limited to 'compiler/dex/quick/mir_to_lir.h')
-rw-r--r-- | compiler/dex/quick/mir_to_lir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/dex/quick/mir_to_lir.h b/compiler/dex/quick/mir_to_lir.h index dd09330..a2b85ff 100644 --- a/compiler/dex/quick/mir_to_lir.h +++ b/compiler/dex/quick/mir_to_lir.h @@ -843,8 +843,8 @@ class Mir2Lir : public Backend { virtual void GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src1, RegLocation rl_src2, int flags); void GenConversionCall(QuickEntrypointEnum trampoline, RegLocation rl_dest, RegLocation rl_src); - virtual void GenSuspendTest(int opt_flags); - virtual void GenSuspendTestAndBranch(int opt_flags, LIR* target); + void GenSuspendTest(int opt_flags); + void GenSuspendTestAndBranch(int opt_flags, LIR* target); // This will be overridden by x86 implementation. virtual void GenConstWide(RegLocation rl_dest, int64_t value); |