Merge "Basic SIMD reduction support."
am: 8db7e62464

Change-Id: Iaffd8b9e63defe7b8ac327b663c21a8a7aafc87a
diff --git a/runtime/runtime.cc b/runtime/runtime.cc
index a8ccf89..ac5874e 100644
--- a/runtime/runtime.cc
+++ b/runtime/runtime.cc
@@ -492,6 +492,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_);