diff options
author | Andreas Jaeger <aj@suse.de> | 2002-06-08 16:06:55 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2002-06-08 16:06:55 +0200 |
commit | 272cdf589d977f2e80314649ab85581722f3ebcb (patch) | |
tree | ba1959edbe7411756335dbb8b14938758afd964f /gcc/lcm.c | |
parent | 4e4bcb4e862dcb4c79fa67c5ecc054951bbfe40b (diff) | |
download | gcc-272cdf589d977f2e80314649ab85581722f3ebcb.tar.gz |
lcm.c (optimize_mode_switching): Add unused attribute for variable.
* lcm.c (optimize_mode_switching): Add unused attribute for
variable.
* sched-deps.c (sched_analyze): Remove unused variable.
From-SVN: r54372
Diffstat (limited to 'gcc/lcm.c')
-rw-r--r-- | gcc/lcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/lcm.c b/gcc/lcm.c index 3d4ccc9bb58..314d7a0c6fc 100644 --- a/gcc/lcm.c +++ b/gcc/lcm.c @@ -1,5 +1,5 @@ /* Generic partial redundancy elimination with lazy code motion support. - Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GCC. @@ -1024,7 +1024,7 @@ optimize_mode_switching (file) int n_entities; int max_num_modes = 0; bool emited = false; - basic_block post_entry, pre_exit ATTRIBUTE_UNUSED; + basic_block post_entry ATTRIBUTE_UNUSED, pre_exit ATTRIBUTE_UNUSED; clear_bb_flags (); |