Merge "ART: Clear JniConstants on shutdown"
am: 89c2f5edb0

Change-Id: I9294113aa08b76adac5fca8176d9b1263976ca64
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index 5888762..c02682d 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -507,6 +507,10 @@
   UNUSED(old_value);
 #endif
 
+#ifdef ART_TARGET_ANDROID
+  android_set_abort_message(msg);
+#endif
+
   // Ensure that we don't have multiple threads trying to abort at once,
   // which would result in significantly worse diagnostics.
   MutexLock mu(Thread::Current(), *Locks::abort_lock_);