diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-15 08:30:02 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-15 08:30:02 +0000 |
commit | e690b385a0f2ff4af2cd6cd56fd8ef94f697bf63 (patch) | |
tree | fb5a3a4fc913d05084620e60c670ecc9dde2dd16 /gcc/c-pch.c | |
parent | 5bd751ff1c6248385ca2a90cf25232c581bdc9ce (diff) | |
download | gcc-e690b385a0f2ff4af2cd6cd56fd8ef94f697bf63.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67971 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-pch.c')
-rw-r--r-- | gcc/c-pch.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/c-pch.c b/gcc/c-pch.c index 354fcc7849b..6a2131404c9 100644 --- a/gcc/c-pch.c +++ b/gcc/c-pch.c @@ -46,7 +46,6 @@ struct c_pch_header static FILE *pch_outfile; -extern char *asm_file_name; static long asm_file_startpos; static const char * get_ident PARAMS((void)); |