summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-03-05 18:39:16 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-03-05 18:39:16 +0000
commit511472b9110d15cf30a205bb514eb98f6afce651 (patch)
tree9a32fc05f176e601a023f2b901eaa307c1ea0b2c
parent3cd52df3d740f8a656233b199dfcaab165f415ff (diff)
parent449fa6e44b220e48dee20f569b46161f3a056add (diff)
downloadandroid_art-511472b9110d15cf30a205bb514eb98f6afce651.tar.gz
android_art-511472b9110d15cf30a205bb514eb98f6afce651.tar.bz2
android_art-511472b9110d15cf30a205bb514eb98f6afce651.zip
Merge "Revert "Avoid compiling monster methods in boot image""
-rw-r--r--dex2oat/dex2oat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index ec2713afbf..afa849580c 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -993,7 +993,7 @@ static int dex2oat(int argc, char** argv) {
if (compiler_filter_string == NULL) {
if (image) {
- compiler_filter_string = "speed";
+ compiler_filter_string = "everything";
} else {
#if ART_SMALL_MODE
compiler_filter_string = "interpret-only";