diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-03 00:17:11 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-03 00:17:11 +0000 |
commit | 124d58a1566656489e1a34297499ddec51df6eb3 (patch) | |
tree | 736903c43f30ba905e45449a7537cee8badf4917 /gcc/dwarfout.c | |
parent | 99d5607ad258cc29ea67324e0b77038fc75bd4e5 (diff) | |
download | gcc-124d58a1566656489e1a34297499ddec51df6eb3.tar.gz |
* dce.c: Remove all uses of assert.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* ssa.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35438 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r-- | gcc/dwarfout.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index af1337f4ce8..9e3d5c6639c 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -37,15 +37,6 @@ Boston, MA 02111-1307, USA. */ #include "toplev.h" #include "tm_p.h" -/* We cannot use <assert.h> in GCC source, since that would include - GCC's assert.h, which may not be compatible with the host compiler. */ -#undef assert -#ifdef NDEBUG -# define assert(e) -#else -# define assert(e) do { if (! (e)) abort (); } while (0) -#endif - /* IMPORTANT NOTE: Please see the file README.DWARF for important details regarding the GNU implementation of Dwarf. */ |