diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2018-03-08 17:09:13 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-03-08 17:09:13 +0000 |
commit | 66f40dbc3e56c7102820842ec49a55b70cf0e151 (patch) | |
tree | 2710c26110a685322f7414bb8b0f0d42d3de07d6 /compiler/optimizing/code_generator_mips.h | |
parent | 05c1fb48e3c5afec1a00107ec4e13d4635cc87ac (diff) | |
parent | 351df3e70521ebbe00ed6c7ac4ea25a0c26f4034 (diff) |
Merge "Minor cleanup of MIN/MAX code."
Diffstat (limited to 'compiler/optimizing/code_generator_mips.h')
-rw-r--r-- | compiler/optimizing/code_generator_mips.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_mips.h b/compiler/optimizing/code_generator_mips.h index ae5fe5be19..b02a216aaf 100644 --- a/compiler/optimizing/code_generator_mips.h +++ b/compiler/optimizing/code_generator_mips.h @@ -246,8 +246,9 @@ class InstructionCodeGeneratorMIPS : public InstructionCodeGenerator { bool value_can_be_null); void HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info, uint32_t dex_pc); - void GenerateMinMax(LocationSummary* locations, bool is_min, bool isR6, DataType::Type type); + void GenerateMinMaxInt(LocationSummary* locations, bool is_min, bool isR6, DataType::Type type); void GenerateMinMaxFP(LocationSummary* locations, bool is_min, bool isR6, DataType::Type type); + void GenerateMinMax(HBinaryOperation*, bool is_min); void GenerateAbsFP(LocationSummary* locations, DataType::Type type, bool isR2OrNewer, bool isR6); // Generate a heap reference load using one register `out`: |