diff options
| author | 2014-11-17 11:55:59 +0000 | |
|---|---|---|
| committer | 2014-11-17 11:55:59 +0000 | |
| commit | 1c18d5d0141ffa76b0838fb99615186dcbefc50e (patch) | |
| tree | 3789d51fabf7fa297575d6ce485a03e16faa1903 /compiler/optimizing/builder.h | |
| parent | 610b21cc7f62c61fcb7d88c1ffcc74bfa9ca5ef8 (diff) | |
| parent | bacfec30ee9f2f6fdfd190f11b105b609938efca (diff) | |
Merge "[optimizing compiler] Add REM_INT, REM_LONG"
Diffstat (limited to 'compiler/optimizing/builder.h')
| -rw-r--r-- | compiler/optimizing/builder.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index 799e628a78..897bcece7b 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -123,12 +123,13 @@ class HGraphBuilder : public ValueObject { Primitive::Type input_type, Primitive::Type result_type); - void BuildCheckedDiv(uint16_t out_reg, - uint16_t first_reg, - int64_t second_reg_or_constant, - uint32_t dex_pc, - Primitive::Type type, - bool second_is_lit); + void BuildCheckedDivRem(uint16_t out_reg, + uint16_t first_reg, + int64_t second_reg_or_constant, + uint32_t dex_pc, + Primitive::Type type, + bool second_is_lit, + bool is_div); void BuildReturn(const Instruction& instruction, Primitive::Type type); |