+2007-01-13 Zdenek Dvorak <dvorakz@suse.cz>
+
+ * ipa-reference.c (analyze_function): Consider also addresses taken
+ in phi nodes.
+
2007-01-12 Roger Sayle <roger@eyesopen.com>
* c-typeck.c (null_pointer_constant_p): Replace use of
FOR_EACH_BB_FN (this_block, this_cfun)
{
block_stmt_iterator bsi;
+ tree phi, op;
+ use_operand_p use;
+ ssa_op_iter iter;
+
+ /* Find the addresses taken in phi node arguments. */
+ for (phi = phi_nodes (this_block); phi; phi = PHI_CHAIN (phi))
+ {
+ FOR_EACH_PHI_ARG (use, phi, iter, SSA_OP_USE)
+ {
+ op = USE_FROM_PTR (use);
+ if (TREE_CODE (op) == ADDR_EXPR)
+ check_rhs_var (l, op);
+ }
+ }
+
for (bsi = bsi_start (this_block); !bsi_end_p (bsi); bsi_next (&bsi))
walk_tree (bsi_stmt_ptr (bsi), scan_for_static_refs,
fn, visited_nodes);
+2007-01-13 Zdenek Dvorak <dvorakz@suse.cz>
+
+ * gcc.dg/20070112-1.c: New test.
+
2007-01-12 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/30435
2007-01-12 Olga Golovanevsky <olga@il.ibm.com>
- * gcc.dg/torture/pr24750-1.c: Add prototype of free.
+ * gcc.dg/torture/pr24750-1.c: Add prototype of free.
2007-01-12 Tom Tromey <tromey@redhat.com>
--- /dev/null
+/* We used to ICE on this testcase: the address of bad_spill_regs is
+ only taken in a phi node, which we missed and cleared its TREE_ADDRESSABLE
+ flag. This gets revealed when the loop is completely unrolled, thus
+ exposing the addresses as ordinary statements. */
+
+/* { dg-do compile } */
+/* { dg-options "-O1" } */
+
+
+typedef unsigned HARD_REG_SET[2];
+static HARD_REG_SET bad_spill_regs;
+
+void
+order_regs_for_reload ()
+{
+ register int i;
+
+ register unsigned *scan_tp_ = bad_spill_regs;
+
+ for (i = 0; i < 2; i++)
+ *scan_tp_++ = 0;
+
+ bad_spill_regs[0] |= 1;
+}