|
From: <sv...@va...> - 2010-08-22 12:23:09
|
Author: sewardj
Date: 2010-08-22 13:23:01 +0100 (Sun, 22 Aug 2010)
New Revision: 11284
Log:
Merge from branches/THUMB: link-time stub needed on Ubuntu 10.04 (ARM)
(maybe. actually I am not sure why this is necessary).
Modified:
trunk/coregrind/m_main.c
Modified: trunk/coregrind/m_main.c
===================================================================
--- trunk/coregrind/m_main.c 2010-08-22 12:21:14 UTC (rev 11283)
+++ trunk/coregrind/m_main.c 2010-08-22 12:23:01 UTC (rev 11284)
@@ -2611,6 +2611,12 @@
VG_(printf)("Something called __aeabi_unwind_cpp_pr0()\n");
vg_assert(0);
}
+
+void __aeabi_unwind_cpp_pr1(void);
+void __aeabi_unwind_cpp_pr1(void){
+ VG_(printf)("Something called __aeabi_unwind_cpp_pr1()\n");
+ vg_assert(0);
+}
#endif
/* ---------------- Requirement 2 ---------------- */
|