diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-15 08:30:02 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-06-15 08:30:02 +0000 |
commit | d185d26881a1946cf82da6350a1d1518464a8eb6 (patch) | |
tree | fb5a3a4fc913d05084620e60c670ecc9dde2dd16 /gcc/flags.h | |
parent | 72ac76be3abe9ed981037fe35da0c15bec5611ef (diff) | |
download | gcc-d185d26881a1946cf82da6350a1d1518464a8eb6.zip gcc-d185d26881a1946cf82da6350a1d1518464a8eb6.tar.gz gcc-d185d26881a1946cf82da6350a1d1518464a8eb6.tar.bz2 |
c-pch.c (asm_file_name): Remove.
* c-pch.c (asm_file_name): Remove.
* common.opt: Add more switches.
* flags.h (g_switch_set): Boolify.
* opts.c (g_switch_value, g_switch_set, exit_after_options,
version_flag): Move from toplev.c.
(common_handle_option): Handle more switches from toplev.c.
* toplev.c (display_help, display_target_options, decode_d_option,
print_version): Make non-static, remove prototypes.
(aux_base_name, asm_file_name, aux_info_file_name): Constify.
(version_flag, g_switch_value, g_switch_set, exit_after_options):
Remove.
(independent_decode_option): Move some handlers to opts.c.
* toplev.h (aux_info_file_name, aux_base_name, asm_file_name,
exit_after_options, version_flag, display_help, display_target_options,
print_version, decode_d_option): New.
java:
* lang.c (version_flag): Rename to v_flag to avoid clash w/ toplev.h.
From-SVN: r67971
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index 766b24d..5113124 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -600,7 +600,7 @@ extern int flag_wrapv; /* Value of the -G xx switch, and whether it was passed or not. */ extern unsigned HOST_WIDE_INT g_switch_value; -extern int g_switch_set; +extern bool g_switch_set; /* Values of the -falign-* flags: how much to align labels in code. 0 means `use default', 1 means `don't align'. |