summaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-28 20:34:17 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-28 20:34:17 +0000
commit62434574df88bd0f5aa905013cd8c7f89a3fcf53 (patch)
treed9295737521c5789a351138706d4464bb0b7328c /gcc/toplev.c
parentfd1181725744697e18e03985609018cb9c82f605 (diff)
downloadgcc-62434574df88bd0f5aa905013cd8c7f89a3fcf53.tar.gz
* common.opt (flag_gcse_sm): Disable by default.
(flag_gcse_las): Likewise. (flag_web): Likewise. Create from this file. * flags.h: Remove flag_web declaration. * toplev.c (flag_web): Likewise. (process_options): Never set flag_web. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88250 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 848bfca570b..eaeeecaca4d 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -270,12 +270,6 @@ int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
int flag_complex_divide_method = 0;
-/* Nonzero means performs web construction pass. When flag_web ==
- AUTODETECT_FLAG_VAR_TRACKING it will be set according to optimize
- and default_debug_hooks in process_options (). */
-
-int flag_web = AUTODETECT_FLAG_VAR_TRACKING;
-
/* Nonzero means that we don't want inlining by virtue of -fno-inline,
not just because the tree inliner turned us off. */
@@ -1827,7 +1821,7 @@ process_options (void)
debug_type_names[write_symbols]);
/* Now we know which debug output will be used so we can set
- flag_var_tracking, flag_rename_registers and flag_web if the user has
+ flag_var_tracking, flag_rename_registers if the user has
not specified them. */
if (debug_info_level < DINFO_LEVEL_NORMAL
|| debug_hooks->var_location == do_nothing_debug_hooks.var_location)
@@ -1848,10 +1842,6 @@ process_options (void)
flag_rename_registers = default_debug_hooks->var_location
!= do_nothing_debug_hooks.var_location;
- if (flag_web == AUTODETECT_FLAG_VAR_TRACKING)
- flag_web = optimize >= 2 && (default_debug_hooks->var_location
- != do_nothing_debug_hooks.var_location);
-
if (flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING)
flag_var_tracking = optimize >= 1;