|
From: <sv...@va...> - 2006-10-14 23:26:28
|
Author: njn Date: 2006-10-15 00:26:21 +0100 (Sun, 15 Oct 2006) New Revision: 6231 Log: Move VG_BUGS_TO to pub_tool_basics.h so that Nulgrind need not import pub_tool_libcassert.h. Modified: trunk/include/pub_tool_basics.h trunk/include/pub_tool_libcassert.h trunk/none/nl_main.c Modified: trunk/include/pub_tool_basics.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/include/pub_tool_basics.h 2006-10-14 22:25:30 UTC (rev 6230) +++ trunk/include/pub_tool_basics.h 2006-10-14 23:26:21 UTC (rev 6231) @@ -131,6 +131,9 @@ #define VG_STRINGIFZ(__str) #__str #define VG_STRINGIFY(__str) VG_STRINGIFZ(__str) =20 +// Where to send bug reports to. +#define VG_BUGS_TO "www.valgrind.org" + #endif /* __PUB_TOOL_BASICS_H */ =20 /*--------------------------------------------------------------------*/ Modified: trunk/include/pub_tool_libcassert.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/include/pub_tool_libcassert.h 2006-10-14 22:25:30 UTC (rev 6230= ) +++ trunk/include/pub_tool_libcassert.h 2006-10-14 23:26:21 UTC (rev 6231= ) @@ -31,9 +31,6 @@ #ifndef __PUB_TOOL_LIBCBASSERT_H #define __PUB_TOOL_LIBCBASSERT_H =20 -// Where to send bug reports to. -#define VG_BUGS_TO "www.valgrind.org" - #define tl_assert(expr) = \ ((void) ((expr) ? 0 : = \ (VG_(assert_fail) (/*isCore?*/False, #expr, = \ Modified: trunk/none/nl_main.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/none/nl_main.c 2006-10-14 22:25:30 UTC (rev 6230) +++ trunk/none/nl_main.c 2006-10-14 23:26:21 UTC (rev 6231) @@ -29,7 +29,6 @@ */ =20 #include "pub_tool_basics.h" -#include "pub_tool_libcassert.h" #include "pub_tool_tooliface.h" =20 static void nl_post_clo_init(void) |