diff options
author | 2013-03-06 15:20:50 -0800 | |
---|---|---|
committer | 2013-03-06 15:20:50 -0800 | |
commit | 0d94eb659387bb797498918ac7e1a41f14b4a11b (patch) | |
tree | 933544ec77dd17f01ecc3e6bc2337a28095ef74e /src/compiler/llvm/gbc_expander.cc | |
parent | 8227cc1b46f36aed77745ea15de2f435e04c5337 (diff) |
Minor LLVM cleanup.
Change-Id: Ic3e88d5e551d0ee440231ce8bb515ecd31517fe2
Diffstat (limited to 'src/compiler/llvm/gbc_expander.cc')
-rw-r--r-- | src/compiler/llvm/gbc_expander.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/llvm/gbc_expander.cc b/src/compiler/llvm/gbc_expander.cc index 44cba4bd2f..559ce4c8cb 100644 --- a/src/compiler/llvm/gbc_expander.cc +++ b/src/compiler/llvm/gbc_expander.cc @@ -340,11 +340,11 @@ class GBCExpanderPass : public llvm::FunctionPass { static char ID; GBCExpanderPass(const IntrinsicHelper& intrinsic_helper, IRBuilder& irb, - art::CompilerDriver* compiler, const art::DexCompilationUnit* dex_compilation_unit) + art::CompilerDriver* driver, const art::DexCompilationUnit* dex_compilation_unit) : llvm::FunctionPass(ID), intrinsic_helper_(intrinsic_helper), irb_(irb), context_(irb.getContext()), rtb_(irb.Runtime()), shadow_frame_(NULL), old_shadow_frame_(NULL), - driver_(compiler), + driver_(driver), dex_compilation_unit_(dex_compilation_unit), func_(NULL), current_bb_(NULL), basic_block_unwind_(NULL), changed_(false) {} |