diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-02 20:43:24 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-02 20:43:24 +0000 |
commit | 0a78547b888d323995803c34bf70f886e2043963 (patch) | |
tree | a122f23eb74b7af597fd74a1558c5fac6ab9e969 /gcc/toplev.h | |
parent | 47efb553e61e0cb9aefdf84c50bc1b19ba46c929 (diff) | |
download | gcc-0a78547b888d323995803c34bf70f886e2043963.tar.gz |
* toplev.c (debug_ignore_block): Return int.
* dwarf2out.c (dwarf2out_ignore_block): Likewise.
* toplev.h, dwarf2out.h: Adjust.
* emit-rtl.c (remove_unnecessary_notes): Test return value.
* emit-rtl.c (remove_unnecessary_notes): Fix spelling of "necessary".
* toplev.c, final.c, rtl.h: Adjust.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33616 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.h')
-rw-r--r-- | gcc/toplev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.h b/gcc/toplev.h index e5a06fff093..83795329e2e 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -35,7 +35,7 @@ extern void debug_start_source_file PARAMS ((char *)); extern void debug_end_source_file PARAMS ((unsigned)); extern void debug_define PARAMS ((unsigned, char *)); extern void debug_undef PARAMS ((unsigned, char *)); -extern void debug_ignore_block PARAMS ((union tree_node *)); +extern int debug_ignore_block PARAMS ((union tree_node *)); extern void fatal PARAMS ((const char *, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN; extern void fatal_io_error PARAMS ((const char *)) |