+2004-06-11 Richard Henderson <rth@redhat.com>
+
+ * tree-ssa-operands.c (get_stmt_operands): Clear makes_aliased_loads
+ and makes_aliased_stores.
+
2004-06-11 Andrew Pinski <pinskia@physics.uc.edu>
* doc/install.text (--enable-shared): Fix typo.
timevar_push (TV_TREE_OPS);
- /* Initially assume that the statement has no volatile operands.
- Statements marked with 'has_volatile_ops' are not processed by the
- optimizers. */
+ /* Initially assume that the statement has no volatile operands, nor
+ makes aliased loads or stores. */
ann->has_volatile_ops = false;
+ ann->makes_aliased_stores = false;
+ ann->makes_aliased_loads = false;
/* Remove any existing operands as they will be scanned again. */
free_defs (&(ann->def_ops), true);