summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Brian Carlstrom <bdc@google.com> 2014-03-05 07:14:14 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-03-05 07:14:14 +0000
commitc84d2f1d3feb6271ea260947e2a1eb43d64a099b (patch)
treeed4c1c0273c2a4d64685f3a1a4316af9a9be6ac7
parent86b9b4d595c86ebcee3d6523f4d7bff0b0d67bb7 (diff)
parent217e789288d5a321460ea2399e0eb7f3af6fc91b (diff)
Merge "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 afa849580c..ec2713afbf 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 = "everything";
+ compiler_filter_string = "speed";
} else {
#if ART_SMALL_MODE
compiler_filter_string = "interpret-only";