From: Julian Seward Date: Sun, 22 Aug 2010 12:23:01 +0000 (+0000) Subject: Merge from branches/THUMB: link-time stub needed on Ubuntu 10.04 (ARM) X-Git-Tag: svn/VALGRIND_3_6_0~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a7956ac81f9371f6b488356b186ff8440e56fe4;p=thirdparty%2Fvalgrind.git Merge from branches/THUMB: link-time stub needed on Ubuntu 10.04 (ARM) (maybe. actually I am not sure why this is necessary). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11284 --- diff --git a/coregrind/m_main.c b/coregrind/m_main.c index ce1411a9f3..db74fd0e93 100644 --- a/coregrind/m_main.c +++ b/coregrind/m_main.c @@ -2611,6 +2611,12 @@ void __aeabi_unwind_cpp_pr0(void){ 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 ---------------- */