From: Josef Weidendorfer Date: Mon, 1 May 2006 02:12:58 +0000 (+0000) Subject: Make VG_(run_innerloop) visible for outer Valgrinds X-Git-Tag: svn/VALGRIND_3_2_0~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=835f28229d5c985b4ca926f8400043e40b344d1e;p=thirdparty%2Fvalgrind.git Make VG_(run_innerloop) visible for outer Valgrinds with self hosting. Without this, the symbol has size 0 and type NOT, and is ignored by the symbol loader. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5872 --- diff --git a/coregrind/m_dispatch/dispatch-x86-linux.S b/coregrind/m_dispatch/dispatch-x86-linux.S index d2f61f89aa..66d44fcf56 100644 --- a/coregrind/m_dispatch/dispatch-x86-linux.S +++ b/coregrind/m_dispatch/dispatch-x86-linux.S @@ -51,6 +51,7 @@ UWord VG_(run_innerloop) ( void* guest_state, UWord do_profiling ); */ .text .globl VG_(run_innerloop) +.type VG_(run_innerloop), @function VG_(run_innerloop): /* 4(%esp) holds guest_state */ /* 8(%esp) holds do_profiling */ @@ -251,6 +252,7 @@ run_innerloop_exit_REALLY: popl %ecx popl %ebx ret +.size VG_(run_innerloop), .-VG_(run_innerloop) /*------------------------------------------------------------*/