diff options
Diffstat (limited to 'compiler/optimizing/builder.cc')
| -rw-r--r-- | compiler/optimizing/builder.cc | 10 | 
1 files changed, 8 insertions, 2 deletions
| diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index e19e74f37a..7ae405ab3a 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -1693,8 +1693,14 @@ void HGraphBuilder::BuildPackedSwitch(const Instruction& instruction, uint32_t d    } else {      // Chained cmp-and-branch, starting from starting_key.      for (size_t i = 1; i <= num_entries; i++) { -      BuildSwitchCaseHelper(instruction, i, i == num_entries, table, value, -                            starting_key + i - 1, table.GetEntryAt(i), dex_pc); +      BuildSwitchCaseHelper(instruction, +                            i, +                            i == num_entries, +                            table, +                            value, +                            starting_key + i - 1, +                            table.GetEntryAt(i), +                            dex_pc);      }    }  } |