diff options
author | David Billinghurst <David.Billinghurst@riotinto.com.au> | 1999-11-04 19:51:48 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1999-11-04 19:51:48 +0000 |
commit | 17074a35df5c8c5de3f24cef85585b0f738d1ec9 (patch) | |
tree | eba071611c23e1d9bb0cc118cd39653ce00fe049 /gcc/rtl.c | |
parent | 397f674e7fc336d69263e009b088fab16dbfdd12 (diff) | |
download | gcc-17074a35df5c8c5de3f24cef85585b0f738d1ec9.zip gcc-17074a35df5c8c5de3f24cef85585b0f738d1ec9.tar.gz gcc-17074a35df5c8c5de3f24cef85585b0f738d1ec9.tar.bz2 |
rtl.c: Include toplev.h.
* rtl.c: Include toplev.h.
(fatal): Remove declaration.
From-SVN: r30398
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */ #include "bitmap.h" #include "ggc.h" #include "obstack.h" +#include "toplev.h" #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free @@ -1243,9 +1244,6 @@ trim_filename (name) /* Report an internal compiler error in a friendly manner and without dumping core. */ -extern void fatal PVPROTO ((const char *, ...)) - ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; - void fancy_abort (file, line, function) const char *file; |