Index: tree-ssa-alias.c =================================================================== RCS file: /cvs/gcc/gcc/gcc/tree-ssa-alias.c,v retrieving revision 2.60 diff -u -p -r2.60 tree-ssa-alias.c --- tree-ssa-alias.c 1 Dec 2004 00:33:05 -0000 2.60 +++ tree-ssa-alias.c 1 Dec 2004 21:13:42 -0000 @@ -438,6 +438,18 @@ init_alias_info (void) { unsigned i; bitmap_iterator bi; + basic_block bb; + + /* We cannot be lazy getting the statement operands as if we are then we + would get non SSA_NAMEs in the VOPs which would we balk at below. */ + FOR_EACH_BB (bb) + { + block_stmt_iterator si; + for (si = bsi_start (bb); !bsi_end_p (si); bsi_next (&si)) + { + get_stmt_operands (bsi_stmt (si)); + } + } /* Clear the call-clobbered set. We are going to re-discover call-clobbered variables. */