aboutsummaryrefslogtreecommitdiff
path: root/gcc/flags.h
diff options
context:
space:
mode:
authorDoug Evans <dje@canuck.cygnus.com>1996-05-17 16:34:47 +0000
committerDoug Evans <dje@canuck.cygnus.com>1996-05-17 16:34:47 +0000
commitf5979639a810015fa08126a964e5f8a7581cc434 (patch)
treec073e4b52d30021d26f25c382c320b42eb2a6ff6 /gcc/flags.h
parent6a0b80271b67539753a5bd1826da1a615019d636 (diff)
* flags.h (flag_debug_asm): Declare.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@12005 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flags.h')
-rw-r--r--gcc/flags.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/gcc/flags.h b/gcc/flags.h
index 5712f1943bd..ffd837dd4f2 100644
--- a/gcc/flags.h
+++ b/gcc/flags.h
@@ -1,5 +1,5 @@
/* Compilation switch flag definitions for GNU CC.
- Copyright (C) 1987, 1988, 1994, 1995 Free Software Foundation, Inc.
+ Copyright (C) 1987, 1988, 1994, 1995, 1996 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -334,10 +334,21 @@ extern int flag_function_sections;
/* -fverbose-asm causes extra commentary information to be produced in
the generated assembly code (to make it more readable). This option
is generally only of use to those who actually need to read the
- generated assembly code (perhaps while debugging the compiler itself). */
+ generated assembly code (perhaps while debugging the compiler itself).
+ -fverbose-asm is the default. -fno-verbose-asm causes the extra information
+ to not be added and is useful when comparing two assembler files. */
extern int flag_verbose_asm;
+/* -dA causes debug information to be produced in
+ the generated assembly code (to make it more readable). This option
+ is generally only of use to those who actually need to read the
+ generated assembly code (perhaps while debugging the compiler itself).
+ Currently, this switch is only used by dwarfout.c; however, it is intended
+ to be a catchall for printing debug information in the assembler file. */
+
+extern int flag_debug_asm;
+
/* -fgnu-linker specifies use of the GNU linker for initializations.
-fno-gnu-linker says that collect will be used. */
extern int flag_gnu_linker;