From: Julian Seward Date: Tue, 21 Jun 2005 09:56:56 +0000 (+0000) Subject: Un-break the build on ppc32-linux. This whole multiplatform X-Git-Tag: svn/VALGRIND_3_0_0~333 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa449301b48db84c78d49a7d22eb20417d7ab464;p=thirdparty%2Fvalgrind.git Un-break the build on ppc32-linux. This whole multiplatform development deal is much more fragile than single-platform .. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3985 --- diff --git a/coregrind/m_trampoline.S b/coregrind/m_trampoline.S index 7dacb3ab6f..f248447263 100644 --- a/coregrind/m_trampoline.S +++ b/coregrind/m_trampoline.S @@ -37,6 +37,7 @@ This code runs on the simulated CPU. */ +/*---------------- x86-linux ----------------*/ #if defined(VGP_x86_linux) .global VG_(trampoline_stuff_start) @@ -68,10 +69,10 @@ VG_(x86_linux_REDIR_FOR__dl_sysinfo_int80): VG_(trampoline_stuff_end): +/*---------------- amd64-linux ----------------*/ #else #if defined(VGP_amd64_linux) - .global VG_(trampoline_stuff_start) VG_(trampoline_stuff_start): @@ -99,18 +100,19 @@ VG_(amd64_linux_REDIR_FOR_vtime): VG_(trampoline_stuff_end): +/*---------------- ppc32-linux ----------------*/ #else #if defined(VGP_ppc32_linux) - -// CAB: TODO -// Not yet used, just keeping the compiler quiet -sigreturn_start: -rt_sigreturn_start: -syscall_start: -gettimeofday_start: -time_start: +.global VG_(trampoline_stuff_start) +VG_(trampoline_stuff_start): + +.global VG_(trampoline_stuff_end) +VG_(trampoline_stuff_end): + + +/*---------------- unknown ----------------*/ #else # error Unknown platform