Index: CREDITS.TXT
===================================================================
--- CREDITS.TXT	(revision 216677)
+++ CREDITS.TXT	(working copy)
@@ -8,6 +8,10 @@
 (W), PGP key ID and fingerprint (P), description (D), and snail-mail address
 (S).
 
+N: Aaron Ballman
+E: aaron@aaronballman.com
+D: Minor patches
+
 N: Logan Chien
 E: logan.chien@mediatek.com
 D: ARM EHABI Unwind & Exception Handling
Index: include/cxxabi.h
===================================================================
--- include/cxxabi.h	(revision 216677)
+++ include/cxxabi.h	(working copy)
@@ -66,6 +66,7 @@
 // 2.6 Auxiliary Runtime APIs
 extern LIBCXXABI_NORETURN void __cxa_bad_cast(void);
 extern LIBCXXABI_NORETURN void __cxa_bad_typeid(void);
+extern LIBCXXABI_NORETURN void __cxa_throw_bad_array_new_length(void);
 
 
 
Index: src/cxa_aux_runtime.cpp
===================================================================
--- src/cxa_aux_runtime.cpp	(revision 216677)
+++ src/cxa_aux_runtime.cpp	(working copy)
@@ -29,6 +29,10 @@
     throw std::bad_typeid();
 }
 
+LIBCXXABI_NORETURN
+void __cxa_throw_bad_array_new_length(void) {
+    throw std::bad_array_new_length();
+}
 }  // extern "C"
 
 }  // abi
