Commit 63c0efdb by Aldy Hernandez Committed by Aldy Hernandez

trans-mem.c (requires_barrier): Remove call to is_global_var.

        * trans-mem.c (requires_barrier): Remove call to is_global_var.

From-SVN: r183273
parent ba9b1f11
2012-01-18 Aldy Hernandez <aldyh@redhat.com>
* trans-mem.c (requires_barrier): Remove call to is_global_var.
2012-01-18 Richard Guenther <rguenther@suse.de>
* tree-ssa.c (useless_type_conversion_p): Remove special-casing
......
......@@ -1496,9 +1496,7 @@ requires_barrier (basic_block entry_block, tree x, gimple stmt)
during lower_sequence_tm/gimplification, leave the call
to needs_to_live_in_memory until we eliminate
lower_sequence_tm altogether. */
needs_to_live_in_memory (x)
/* X escapes. */
|| is_global_var (x))
needs_to_live_in_memory (x))
return true;
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment