diff options
author | J"orn Rennecke <amylaar@cygnus.co.uk> | 1998-10-06 09:03:38 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 1998-10-06 10:03:38 +0100 |
commit | b707b4509b0eb1b31919e724ef778a9b210a90b0 (patch) | |
tree | d886cd126771423714dea20b8ad27de6d6273fa0 /gcc/flags.h | |
parent | 87603ed0ee7dd6667ca5098dffb08a120435f713 (diff) | |
download | gcc-b707b4509b0eb1b31919e724ef778a9b210a90b0.zip gcc-b707b4509b0eb1b31919e724ef778a9b210a90b0.tar.gz gcc-b707b4509b0eb1b31919e724ef778a9b210a90b0.tar.bz2 |
Cleanup for -fdump-unnumbered:
* flags.h (flag_dump_unnumbered): Declare.
* toplev.c (flag_dump_unnumbered): Don't declare.
* print-rtl.c (flags.h): Include.
(print_rtl_single): Add return value.
* rtl.h (print_rtl_single): Update declaration.
* flow.c (flag_dump_unnumbered): Don't declare.
(print_rtl_with_bb): Use return value of print_rtl_single.
From-SVN: r22865
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index a403750..3b7dd5ee3 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -356,6 +356,11 @@ extern int flag_branch_on_count_reg; extern int flag_delayed_branch; +/* Nonzero means suppress output of instruction numbers and line number + notes in debugging dumps. */ + +extern int flag_dump_unnumbered; + /* Nonzero means pretend it is OK to examine bits of target floats, even if that isn't true. The resulting code will have incorrect constants, but the same series of instructions that the native compiler would make. */ |