Commit 1de59bbd by David Edelsohn Committed by David Edelsohn

* config/rs6000/rs6000.c (is_mem_ref): Ignore STACK_TIE.

From-SVN: r130791
parent 4caa08da
2007-12-12 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (is_mem_ref): Ignore STACK_TIE.
2007-12-12 Aldy Hernandez <aldyh@redhat.com>
PR tree-optimization/32901
......@@ -18383,6 +18383,11 @@ is_mem_ref (rtx pat)
int i, j;
bool ret = false;
/* stack_tie does not produce any real memory traffic. */
if (GET_CODE (pat) == UNSPEC
&& XINT (pat, 1) == UNSPEC_TIE)
return false;
if (GET_CODE (pat) == MEM)
return true;
......
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