summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2016-09-26 19:45:22 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-09-26 19:45:23 +0000
commita4850b0fa18c8b92dd5c20c166856cfe87aec72f (patch)
treef38d8d8aae51f53e7ee6b474f47597b784fc2316 /compiler
parent0cfe19af3b7395658210ea6044a65c9811962a7a (diff)
parent3fec9ac0d5af1358d216eb2fdc2000ec0205f3f0 (diff)
Merge "ART: Use libbase logging"
Diffstat (limited to 'compiler')
-rw-r--r--compiler/Android.bp1
-rw-r--r--compiler/oat_writer.cc2
2 files changed, 2 insertions, 1 deletions
diff --git a/compiler/Android.bp b/compiler/Android.bp
index 09c53b6889..e56d8b2e0a 100644
--- a/compiler/Android.bp
+++ b/compiler/Android.bp
@@ -288,6 +288,7 @@ art_cc_library {
shared_libs: [
"libartd-compiler",
"libart-runtime-gtest",
+ "libbase",
],
}
diff --git a/compiler/oat_writer.cc b/compiler/oat_writer.cc
index 9045817832..c840a9e64a 100644
--- a/compiler/oat_writer.cc
+++ b/compiler/oat_writer.cc
@@ -966,7 +966,7 @@ class OatWriter::InitImageMethodVisitor : public OatDexMethodVisitor {
nullptr,
invoke_type);
if (method == nullptr) {
- LOG(INTERNAL_FATAL) << "Unexpected failure to resolve a method: "
+ LOG(FATAL_WITHOUT_ABORT) << "Unexpected failure to resolve a method: "
<< PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
soa.Self()->AssertPendingException();
mirror::Throwable* exc = soa.Self()->GetException();