mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
ba9b1f118f
commit
63c0efdb1e
|
|
@ -1,3 +1,7 @@
|
||||||
|
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>
|
2012-01-18 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
* tree-ssa.c (useless_type_conversion_p): Remove special-casing
|
* 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
|
during lower_sequence_tm/gimplification, leave the call
|
||||||
to needs_to_live_in_memory until we eliminate
|
to needs_to_live_in_memory until we eliminate
|
||||||
lower_sequence_tm altogether. */
|
lower_sequence_tm altogether. */
|
||||||
needs_to_live_in_memory (x)
|
needs_to_live_in_memory (x))
|
||||||
/* X escapes. */
|
|
||||||
|| is_global_var (x))
|
|
||||||
return true;
|
return true;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue