aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1998-03-19 07:14:19 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1998-03-19 07:14:19 +0000
commitecb0676809f5683739bc2316cf350fde0e034a94 (patch)
tree1ed9fc91c33fff68c25f032777df9fa33644a522 /gcc/flow.c
parent0978790f4fe82534547b0ee4c763caabbae578d7 (diff)
downloadgcc-ecb0676809f5683739bc2316cf350fde0e034a94.zip
gcc-ecb0676809f5683739bc2316cf350fde0e034a94.tar.gz
gcc-ecb0676809f5683739bc2316cf350fde0e034a94.tar.bz2
More warning fixes...
* final.c (shorten_branches): Add parentheses around +/- in operand of &. * flow.c (life_analysis): Wrap variable `i' in macro ELIMINABLE_REGS. From-SVN: r18703
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 6dd84a4..09dacf5 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -962,9 +962,8 @@ life_analysis (f, nregs, file)
int nregs;
FILE *file;
{
- register size_t i;
-
#ifdef ELIMINABLE_REGS
+ register size_t i;
static struct {int from, to; } eliminables[] = ELIMINABLE_REGS;
#endif