summaryrefslogtreecommitdiffstats
path: root/src/compiler/dex/mir_dataflow.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-11 16:00:56 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-11 21:16:04 -0700
commit51c2467e8771b56e25ae4f17f66522f979f57a7e (patch)
tree16a66abbb45ea3fcc8c513c8511f34a46cd454c4 /src/compiler/dex/mir_dataflow.cc
parent27c590edf6c24107b6473e84e526c432bd081f6e (diff)
downloadandroid_art-51c2467e8771b56e25ae4f17f66522f979f57a7e.tar.gz
android_art-51c2467e8771b56e25ae4f17f66522f979f57a7e.tar.bz2
android_art-51c2467e8771b56e25ae4f17f66522f979f57a7e.zip
libart-compiler cleanup
- Move compile-time code to src/compiler and libart-compiler OatWriter, ImageWriter, ElfWriter, ElfFixup, ElfStripper, stub generation - Move ClassReference and MethodReference to remove MethodVerifier dependency on CompilerDriver - Move runtime_support_llvm.cc out of src/compiler and next to runtime_support.cc - Change dex2oat and gtests to directly depend on libart-compiler - Move non-common definitions from Android.common.mk to more specific makefiles - Add LOCAL_ADDITIONAL_DEPENDENCIES on appropriate makefiles Change-Id: I897027e69945914128f21f317a92caf9255bc600
Diffstat (limited to 'src/compiler/dex/mir_dataflow.cc')
-rw-r--r--src/compiler/dex/mir_dataflow.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/dex/mir_dataflow.cc b/src/compiler/dex/mir_dataflow.cc
index 3b2c1a6c5e..381afb122e 100644
--- a/src/compiler/dex/mir_dataflow.cc
+++ b/src/compiler/dex/mir_dataflow.cc
@@ -1225,7 +1225,7 @@ bool MIRGraph::InvokeUsesMethodStar(MIR* mir)
return false;
}
DexCompilationUnit m_unit(cu_);
- CompilerDriver::MethodReference target_method(cu_->dex_file, mir->dalvikInsn.vB);
+ MethodReference target_method(cu_->dex_file, mir->dalvikInsn.vB);
int vtable_idx;
uintptr_t direct_code;
uintptr_t direct_method;