diff options
author | Vladimir Marko <vmarko@google.com> | 2015-03-23 17:05:14 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2015-03-24 11:46:21 +0000 |
commit | f6737f7ed741b15cfd60c2530dab69f897540735 (patch) | |
tree | 120c8ea6fe55ba3a8e2f9cf6eba041ef98a9b51f /compiler/dex/quick/arm/codegen_arm.h | |
parent | 274395fe6649d83d723c4b912a46291b2987efd6 (diff) | |
download | android_art-f6737f7ed741b15cfd60c2530dab69f897540735.tar.gz android_art-f6737f7ed741b15cfd60c2530dab69f897540735.tar.bz2 android_art-f6737f7ed741b15cfd60c2530dab69f897540735.zip |
Quick: Clean up Mir2Lir codegen.
Clean up WrapPointer()/UnwrapPointer() and OpPcRelLoad().
Change-Id: I1a91f01e1e779599c77f3f6efcac2a6ad34629cf
Diffstat (limited to 'compiler/dex/quick/arm/codegen_arm.h')
-rw-r--r-- | compiler/dex/quick/arm/codegen_arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/arm/codegen_arm.h b/compiler/dex/quick/arm/codegen_arm.h index 67fabbddfe..4141bcfe98 100644 --- a/compiler/dex/quick/arm/codegen_arm.h +++ b/compiler/dex/quick/arm/codegen_arm.h @@ -200,7 +200,7 @@ class ArmMir2Lir FINAL : public Mir2Lir { void UpdateIT(LIR* it, const char* new_guide); void OpEndIT(LIR* it); LIR* OpMem(OpKind op, RegStorage r_base, int disp); - LIR* OpPcRelLoad(RegStorage reg, LIR* target); + void OpPcRelLoad(RegStorage reg, LIR* target); LIR* OpReg(OpKind op, RegStorage r_dest_src); void OpRegCopy(RegStorage r_dest, RegStorage r_src); LIR* OpRegCopyNoInsert(RegStorage r_dest, RegStorage r_src); |