summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/code_generator_x86.h
diff options
context:
space:
mode:
authorGuillaume Sanchez <guillaumesa@google.com>2015-04-09 21:12:15 +0100
committerGuillaume Sanchez <guillaumesa@google.com>2015-04-10 10:28:02 +0100
commitb19930c5cba3cf662dce5ee057fcc9829b4cbb9c (patch)
treec226f8fffc4522b273072c516507083e2a77c505 /compiler/optimizing/code_generator_x86.h
parent0f88e87085b7cf6544dadff3f555773966a6853e (diff)
downloadart-b19930c5cba3cf662dce5ee057fcc9829b4cbb9c.zip
art-b19930c5cba3cf662dce5ee057fcc9829b4cbb9c.tar.gz
art-b19930c5cba3cf662dce5ee057fcc9829b4cbb9c.tar.bz2
Follow up of "div/rem on x86 and x86_64", to tidy up the code a little.
Change-Id: Ibf39cbc8ac1d773599d70be2cb1e941674b60f1d
Diffstat (limited to 'compiler/optimizing/code_generator_x86.h')
-rw-r--r--compiler/optimizing/code_generator_x86.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_x86.h b/compiler/optimizing/code_generator_x86.h
index a78f564..a5489d2 100644
--- a/compiler/optimizing/code_generator_x86.h
+++ b/compiler/optimizing/code_generator_x86.h
@@ -164,7 +164,7 @@ class InstructionCodeGeneratorX86 : public HGraphVisitor {
void HandleBitwiseOperation(HBinaryOperation* instruction);
void GenerateDivRemIntegral(HBinaryOperation* instruction);
void DivRemOneOrMinusOne(HBinaryOperation* instruction);
- void DivByPowerOfTwo(HBinaryOperation* instruction);
+ void DivByPowerOfTwo(HDiv* instruction);
void GenerateDivRemWithAnyConstant(HBinaryOperation* instruction);
void GenerateRemFP(HRem *rem);
void HandleShift(HBinaryOperation* instruction);