|
From: <sv...@va...> - 2005-06-21 09:57:02
|
Author: sewardj
Date: 2005-06-21 10:56:56 +0100 (Tue, 21 Jun 2005)
New Revision: 3985
Log:
Un-break the build on ppc32-linux. This whole multiplatform
development deal is much more fragile than single-platform ..
Modified:
trunk/coregrind/m_trampoline.S
Modified: trunk/coregrind/m_trampoline.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_trampoline.S 2005-06-21 04:26:24 UTC (rev 3984)
+++ trunk/coregrind/m_trampoline.S 2005-06-21 09:56:56 UTC (rev 3985)
@@ -37,6 +37,7 @@
This code runs on the simulated CPU.
*/
=20
+/*---------------- x86-linux ----------------*/
#if defined(VGP_x86_linux)
=20
.global VG_(trampoline_stuff_start)
@@ -68,10 +69,10 @@
VG_(trampoline_stuff_end):
=20
=09
+/*---------------- amd64-linux ----------------*/
#else
#if defined(VGP_amd64_linux)
=20
-
.global VG_(trampoline_stuff_start)
VG_(trampoline_stuff_start):
=20
@@ -99,18 +100,19 @@
VG_(trampoline_stuff_end):
=20
=20
+/*---------------- ppc32-linux ----------------*/
#else
#if defined(VGP_ppc32_linux)
=20
-=09
-// 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):
=20
+.global VG_(trampoline_stuff_end)
+VG_(trampoline_stuff_end):
+
+
+
+/*---------------- unknown ----------------*/
#else
# error Unknown platform
=20
|