summaryrefslogtreecommitdiff
path: root/gcc/fold-const.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-12-29 21:18:46 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-12-29 21:18:46 +0000
commit03435587d91d8dda4c4e6258549d638180a79b2c (patch)
treed474080ec416ac1ce02aa0ed5aa5c5f62da1dc25 /gcc/fold-const.c
parent79742b7167b4dc3dc462a20cd201e61b2fbfad0f (diff)
downloadgcc-03435587d91d8dda4c4e6258549d638180a79b2c.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31123 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r--gcc/fold-const.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index a59d6223099..8f94161d825 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))