summaryrefslogtreecommitdiffstats
path: root/compiler/common_compiler_test.cc
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-10-24 14:20:06 -0700
committerIan Rogers <irogers@google.com>2014-10-24 14:23:42 -0700
commit2c4257be8191c5eefde744e8965fcefc80a0a97d (patch)
tree9db3e1f1c60f2df29638ba3ce9d5d5bb8b26ca2c /compiler/common_compiler_test.cc
parent98c271d517bc4d25fc6879b4b8e35ea93885d9e2 (diff)
downloadandroid_art-2c4257be8191c5eefde744e8965fcefc80a0a97d.tar.gz
android_art-2c4257be8191c5eefde744e8965fcefc80a0a97d.tar.bz2
android_art-2c4257be8191c5eefde744e8965fcefc80a0a97d.zip
Tidy logging code not using UNIMPLEMENTED.
Change-Id: I7a79c1671a6ff8b2040887133b3e0925ef9a3cfe
Diffstat (limited to 'compiler/common_compiler_test.cc')
-rw-r--r--compiler/common_compiler_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/common_compiler_test.cc b/compiler/common_compiler_test.cc
index 359d6af57d..7e19e15961 100644
--- a/compiler/common_compiler_test.cc
+++ b/compiler/common_compiler_test.cc
@@ -111,7 +111,7 @@ void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_leng
#else
// Only warn if not Intel as Intel doesn't have cache flush instructions.
#if !defined(__i386__) && !defined(__x86_64__)
- LOG(WARNING) << "UNIMPLEMENTED: cache flush";
+ UNIMPLEMENTED(WARNING) << "cache flush";
#endif
#endif
}