|
From: <sv...@va...> - 2006-05-01 02:13:36
|
Author: weidendo Date: 2006-05-01 03:12:58 +0100 (Mon, 01 May 2006) New Revision: 5872 Log: 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. Modified: trunk/coregrind/m_dispatch/dispatch-x86-linux.S Modified: trunk/coregrind/m_dispatch/dispatch-x86-linux.S =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/coregrind/m_dispatch/dispatch-x86-linux.S 2006-05-01 01:49:28 U= TC (rev 5871) +++ trunk/coregrind/m_dispatch/dispatch-x86-linux.S 2006-05-01 02:12:58 U= TC (rev 5872) @@ -51,6 +51,7 @@ */ .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 @@ popl %ecx popl %ebx ret=09 +.size VG_(run_innerloop), .-VG_(run_innerloop) =20 =20 /*------------------------------------------------------------*/ |