|
From: <sv...@va...> - 2005-05-12 08:26:42
|
Author: sewardj
Date: 2005-05-12 09:26:36 +0100 (Thu, 12 May 2005)
New Revision: 3674
Modified:
trunk/coregrind/core.h
Log:
Fix compilation warnings on amd64 caused by I_die_here.
Modified: trunk/coregrind/core.h
=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/core.h 2005-05-12 05:26:13 UTC (rev 3673)
+++ trunk/coregrind/core.h 2005-05-12 08:26:36 UTC (rev 3674)
@@ -582,7 +582,8 @@
// Useful for making failing stubs, when certain things haven't yet been
// implemented.
#define I_die_here \
- VG_(assert_fail) ("Unimplemented functionality", \
+ VG_(assert_fail) (/*isCore*//*BOGUS*/True, \
+ "Unimplemented functionality", \
__FILE__, __LINE__, __PRETTY_FUNCTION__, \
"valgrind", VG_BUGS_TO, "")
=20
|