diff options
author | Vladimir Marko <vmarko@google.com> | 2014-02-26 11:24:15 +0000 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2014-03-03 12:55:45 +0000 |
commit | be0e546730e532ef0987cd4bde2c6f5a1b14dd2a (patch) | |
tree | 41aa0541ec85b8e26c5e50cc7341f506f5d52314 /compiler/dex/pass_driver.cc | |
parent | cc261bfd336eddac18b85d4eb47f6c905d495241 (diff) | |
download | android_art-be0e546730e532ef0987cd4bde2c6f5a1b14dd2a.tar.gz android_art-be0e546730e532ef0987cd4bde2c6f5a1b14dd2a.tar.bz2 android_art-be0e546730e532ef0987cd4bde2c6f5a1b14dd2a.zip |
Cache field lowering info in mir_graph.
Change-Id: I9f9d76e3ae6c31e88bdf3f59820d31a625da020f
Diffstat (limited to 'compiler/dex/pass_driver.cc')
-rw-r--r-- | compiler/dex/pass_driver.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/dex/pass_driver.cc b/compiler/dex/pass_driver.cc index b60f29697b..256bcb1473 100644 --- a/compiler/dex/pass_driver.cc +++ b/compiler/dex/pass_driver.cc @@ -91,6 +91,7 @@ void PassDriver::CreatePasses() { * - This is not yet an issue: no current pass would require it. */ static const Pass* const passes[] = { + GetPassInstance<CacheFieldLoweringInfo>(), GetPassInstance<CodeLayout>(), GetPassInstance<SSATransformation>(), GetPassInstance<ConstantPropagation>(), |