From de166544d6539942d3507ce47910f601c97b7532 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 7 Mar 2016 15:44:08 +0000 Subject: [PATCH] Add some debugging for zygote crash. bug:27340451 Change-Id: I212567b18959ab4dc7f1dbde2e6d4ff60fe7bed2 --- runtime/art_method.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/art_method.cc b/runtime/art_method.cc index a60f31e52..f97ad5156 100644 --- a/runtime/art_method.cc +++ b/runtime/art_method.cc @@ -377,7 +377,7 @@ const OatQuickMethodHeader* ArtMethod::GetOatQuickMethodHeader(uintptr_t pc) { Runtime* runtime = Runtime::Current(); const void* existing_entry_point = GetEntryPointFromQuickCompiledCode(); - DCHECK(existing_entry_point != nullptr); + CHECK(existing_entry_point != nullptr) << PrettyMethod(this) << "@" << this; ClassLinker* class_linker = runtime->GetClassLinker(); if (class_linker->IsQuickGenericJniStub(existing_entry_point)) { -- 2.11.0