|
From: <sv...@va...> - 2005-06-26 11:57:36
|
Author: sewardj
Date: 2005-06-26 12:56:32 +0100 (Sun, 26 Jun 2005)
New Revision: 4029
Log:
Fix 32-bit-ish looking assumption.
Modified:
trunk/coregrind/stage1.c
Modified: trunk/coregrind/stage1.c
=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/stage1.c 2005-06-26 04:49:25 UTC (rev 4028)
+++ trunk/coregrind/stage1.c 2005-06-26 11:56:32 UTC (rev 4029)
@@ -343,7 +343,7 @@
=20
/* The Linux libc startup sequence leaves this in an apparently
undefined state, but it really is defined, so mark it so. */
- VALGRIND_MAKE_READABLE(init_sp, sizeof(int));
+ VALGRIND_MAKE_READABLE(init_sp, sizeof(Word));
=20
cp =3D getenv(VALGRINDLIB);
=20
|