diff options
| author | 2014-03-03 10:28:05 +0000 | |
|---|---|---|
| committer | 2014-03-04 11:50:09 +0000 | |
| commit | a1a7074eb8256d101f7b5d256cda26d7de6ce6ce (patch) | |
| tree | 51f2a2dc6fca540cc404aed3ed64b9aae74f586e /compiler/dex/mir_graph.h | |
| parent | 093aad184b4451639951a7e012d9b55cbf8c8a07 (diff) | |
Rewrite kMirOpSelect for all IF_ccZ opcodes.
Also improve special cases for ARM and add tests.
Change-Id: I06f575b9c7b547dbc431dbfadf2b927151fe16b9
Diffstat (limited to 'compiler/dex/mir_graph.h')
| -rw-r--r-- | compiler/dex/mir_graph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/mir_graph.h b/compiler/dex/mir_graph.h index 08bf647c95..1eb9ef9bef 100644 --- a/compiler/dex/mir_graph.h +++ b/compiler/dex/mir_graph.h @@ -259,7 +259,7 @@ struct MIR { BasicBlockId* phi_incoming; // Establish link from check instruction (kMirOpCheck) to the actual throwing instruction. MIR* throw_insn; - // Fused cmp branch condition. + // Branch condition for fused cmp or select. ConditionCode ccode; // IGET/IPUT lowering info index, points to MIRGraph::ifield_lowering_infos_. Due to limit on // the number of code points (64K) and size of IGET/IPUT insn (2), this will never exceed 32K. |