diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-03-27 02:01:31 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-03-27 02:01:31 +0000 |
commit | 4afaf1d4cdcd8b4fae7dbceeecae6f0ccea75ce6 (patch) | |
tree | d14a53446b6fc84c3986d03e31426c7bb35877cb | |
parent | 9fb73db1c3fe4296264cf35cc2f3cd671ab2e61a (diff) |
Remove dead macros and declaration.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3459 a5019735-40e9-0310-863c-91ae7b9d1cf9
-rw-r--r-- | coregrind/core.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/coregrind/core.h b/coregrind/core.h index d21d70f9..8996c194 100644 --- a/coregrind/core.h +++ b/coregrind/core.h @@ -1708,17 +1708,6 @@ extern void VGA_(push_signal_frame) ( ThreadId tid, Addr sp_top_of_frame, void *restorer ); ////typedef struct _ThreadArchAux ThreadArchAux; -#define MY__STRING(__str) #__str - -// Assertion to use in code running on the simulated CPU. -#define my_assert(expr) \ - ((void) ((expr) ? 0 : \ - (VG_(user_assert_fail) (MY__STRING(expr), \ - __FILE__, __LINE__, \ - __PRETTY_FUNCTION__), 0))) - -extern void VG_(user_assert_fail) ( const Char* expr, const Char* file, - Int line, const Char* fn ); // --------------------------------------------------------------------- |