diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-12-29 21:18:46 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-12-29 21:18:46 +0000 |
commit | 9d0878fd43180c9746c7fa23954858c139059291 (patch) | |
tree | d474080ec416ac1ce02aa0ed5aa5c5f62da1dc25 /gcc/fold-const.c | |
parent | 5e3c02a857e44774be350cfe84a631291b0c54e2 (diff) | |
download | gcc-9d0878fd43180c9746c7fa23954858c139059291.zip gcc-9d0878fd43180c9746c7fa23954858c139059291.tar.gz gcc-9d0878fd43180c9746c7fa23954858c139059291.tar.bz2 |
cse.c (free_element, [...]): Remove unused prototypes.
* cse.c (free_element, get_element): Remove unused prototypes.
* fold-const.c (extract_muldiv): Initialize variables `op0' and
`op1'.
* jump.c (invert_exp): Add explicit braces to avoid ambiguous
`else' clauses.
From-SVN: r31123
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index a59d622..8f94161 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -4270,7 +4270,7 @@ extract_muldiv (t, c, code, wide_type) ? wide_type : type); tree t1, t2; int same_p = tcode == code; - tree op0, op1; + tree op0 = NULL_TREE, op1 = NULL_TREE; /* Don't deal with constants of zero here; they confuse the code below. */ if (integer_zerop (c)) |