From 997ac87bfe31c5243b76eb60ea8062c4dadda966 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Sun, 7 Feb 2010 17:18:22 +0000 Subject: re PR debug/42991 (cfgexpand.c:2487: Conditional jump or move depends on uninitialised value(s)) 2010-02-07 Richard Guenther PR middle-end/42991 * expr.c (get_inner_reference): Always initialize *pbitsize. From-SVN: r156575 --- gcc/expr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/expr.c') diff --git a/gcc/expr.c b/gcc/expr.c index d1cd815..caf64ed 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5968,6 +5968,7 @@ get_inner_reference (tree exp, HOST_WIDE_INT *pbitsize, /* First get the mode, signedness, and size. We do this from just the outermost expression. */ + *pbitsize = -1; if (TREE_CODE (exp) == COMPONENT_REF) { tree field = TREE_OPERAND (exp, 1); -- cgit v1.1