diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-03-03 21:37:38 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-03-03 21:37:38 +0000 |
commit | c826e751760901de543f4640467e3a08df7f49bf (patch) | |
tree | 6a2323a78664ba45b78df1709ff3cc077db63ccd /gnu/usr.bin/gcc/flags.h | |
parent | a4511fe6a5dc69a771b5ffdf64ba574c959cf37d (diff) |
GCC 2.8.0 merge
Diffstat (limited to 'gnu/usr.bin/gcc/flags.h')
-rw-r--r-- | gnu/usr.bin/gcc/flags.h | 61 |
1 files changed, 54 insertions, 7 deletions
diff --git a/gnu/usr.bin/gcc/flags.h b/gnu/usr.bin/gcc/flags.h index 4f35ee2c1da..ec63096a687 100644 --- a/gnu/usr.bin/gcc/flags.h +++ b/gnu/usr.bin/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, 88, 94, 95, 96, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -27,6 +27,7 @@ enum debug_info_type DBX_DEBUG, /* Write BSD .stabs for DBX (using dbxout.c). */ SDB_DEBUG, /* Write COFF for (old) SDB (using sdbout.c). */ DWARF_DEBUG, /* Write Dwarf debug info (using dwarfout.c). */ + DWARF2_DEBUG, /* Write Dwarf v2 debug info (using dwarf2out.c). */ XCOFF_DEBUG /* Write IBM/Xcoff debug info (using dbxout.c). */ }; @@ -132,6 +133,18 @@ extern int profile_flag; extern int profile_block_flag; +/* Nonzero if generating code to profile program flow graph arcs. */ + +extern int profile_arc_flag; + +/* Nonzero if generating info for gcov to calculate line test coverage. */ + +extern int flag_test_coverage; + +/* Nonzero indicates that branch taken probabilities should be calculated. */ + +extern int flag_branch_probabilities; + /* Nonzero for -pedantic switch: warn about anything that standard C forbids. */ @@ -309,10 +322,6 @@ extern int flag_schedule_insns_after_reload; extern int flag_delayed_branch; -/* Nonzero means to run cleanups after CALL_EXPRs. */ - -extern int flag_short_temps; - /* 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. */ @@ -329,7 +338,13 @@ extern int flag_pedantic_errors; extern int flag_pic; -/* Nonzero means place uninitialized global data in the bss section. */ +/* Nonzero means generate extra code for exception handling and enable + exception handling. */ + +extern int flag_exceptions; + +/* Nonzero means don't place uninitialized global data in common storage + by default. */ extern int flag_no_common; @@ -339,19 +354,39 @@ extern int flag_no_common; needed for crtstuff.c on other systems. */ extern int flag_inhibit_size_directive; +/* Nonzero means place each function into its own section on those platforms + which support arbitrary section names and unlimited numbers of sections. */ + +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). + -fno-verbose-asm, the default, 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; /* Tag all structures with __attribute__(packed) */ extern int flag_pack_struct; + +/* Emit code to check for stack overflow; also may cause large objects + to be allocated dynamically. */ +extern int flag_stack_check; /* Other basic status info about current function. */ @@ -375,3 +410,15 @@ extern int current_function_has_nonlocal_label; function. */ extern int current_function_has_nonlocal_goto; + +/* Nonzero if GCC must add code to check memory access (used by Checker). */ + +extern int flag_check_memory_usage; + +/* Nonzero if GCC must prefix function names (used with + flag_check_memory_usage). */ + +extern int flag_prefix_function_name; +/* Nonzero if the current function is a thunk, so we should try to cut + corners where we can. */ +extern int current_function_is_thunk; |