diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-03-09 15:11:23 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-03-09 15:11:24 +0000 |
commit | d1d4530ffa97729aa8944932a7ac2009ae51c7e3 (patch) | |
tree | b544c9de6459c97b3e51d3984b2348cb0c48df4a /compiler/optimizing/code_generator_arm.h | |
parent | 5ed51e3176f3dc4ff2e50ba4bf52743d404b5b4f (diff) | |
parent | 426b49c45d8088ff3114d3fbcec26db4e00c9324 (diff) |
Merge "ARM(64): Improve the code generated for HSelect"
Diffstat (limited to 'compiler/optimizing/code_generator_arm.h')
-rw-r--r-- | compiler/optimizing/code_generator_arm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_arm.h b/compiler/optimizing/code_generator_arm.h index f081a910ee..5b15902ccd 100644 --- a/compiler/optimizing/code_generator_arm.h +++ b/compiler/optimizing/code_generator_arm.h @@ -299,7 +299,6 @@ class InstructionCodeGeneratorARM : public InstructionCodeGenerator { void GenerateCompareTestAndBranch(HCondition* condition, Label* true_target, Label* false_target); - void GenerateVcmp(HInstruction* instruction); void GenerateFPJumps(HCondition* cond, Label* true_label, Label* false_label); void GenerateLongComparesAndJumps(HCondition* cond, Label* true_label, Label* false_label); void DivRemOneOrMinusOne(HBinaryOperation* instruction); @@ -422,6 +421,8 @@ class CodeGeneratorARM : public CodeGenerator { return CommonGetLabelOf<Label>(block_labels_, block); } + Label* GetFinalLabel(HInstruction* instruction, Label* final_label); + void Initialize() OVERRIDE { block_labels_ = CommonInitializeLabels<Label>(); } |