summaryrefslogtreecommitdiffstats
path: root/src/compiler/driver/compiler_driver.cc
diff options
context:
space:
mode:
authorJeff Hao <jeffhao@google.com>2013-04-11 10:16:48 -0700
committerJeff Hao <jeffhao@google.com>2013-04-11 10:16:48 -0700
commit4b4d711852982716ac478288f210bb2a2f504589 (patch)
tree39c344290c382770f3c6317401877c37306ab9c6 /src/compiler/driver/compiler_driver.cc
parent9d6589c2744835bf946e52b3dfcbcec7099e343e (diff)
downloadandroid_art-4b4d711852982716ac478288f210bb2a2f504589.tar.gz
android_art-4b4d711852982716ac478288f210bb2a2f504589.tar.bz2
android_art-4b4d711852982716ac478288f210bb2a2f504589.zip
Remove SLOW_ART output spam in compiler driver.
Change-Id: I3a0961be43dc366552b8f1f2219b16cf7d20fac9
Diffstat (limited to 'src/compiler/driver/compiler_driver.cc')
-rw-r--r--src/compiler/driver/compiler_driver.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/compiler/driver/compiler_driver.cc b/src/compiler/driver/compiler_driver.cc
index 7ce01eda87..204f6391dc 100644
--- a/src/compiler/driver/compiler_driver.cc
+++ b/src/compiler/driver/compiler_driver.cc
@@ -1615,9 +1615,6 @@ void CompilerDriver::CompileMethod(const DexFile::CodeItem* code_item, uint32_t
bool dont_compile = false;
#if ART_SLOW_MODE
dont_compile = (image_classes_ == NULL) || (image_classes_->size() == 0);
- if (dont_compile) {
- LOG(INFO) << "Not compiling code as ART_SLOW_MODE is enabled";
- }
#endif // ART_SLOW_MODE
if (!dont_compile) {
compiled_method = (*compiler_)(*this, code_item, access_flags, invoke_type, class_def_idx,