Commit 3237ac18 by Andrew Haley Committed by Andrew Haley

alias.c (rtx_equal_for_memref_p): Allow strings as types in operands.

2001-07-19  Andrew Haley  <aph@cambridge.redhat.com>

	* alias.c (rtx_equal_for_memref_p): Allow strings as types in
	operands.

From-SVN: r44356
parent 42f28de9
2001-07-19 Andrew Haley <aph@cambridge.redhat.com>
* alias.c (rtx_equal_for_memref_p): Allow strings as types in
operands.
Wed Jul 25 08:25:01 2001 Jeffrey A Law (law@cygnus.com) Wed Jul 25 08:25:01 2001 Jeffrey A Law (law@cygnus.com)
* ssa-ccp.c (visit_expression): Handle CALL_INSNs that can * ssa-ccp.c (visit_expression): Handle CALL_INSNs that can
......
...@@ -1103,6 +1103,12 @@ rtx_equal_for_memref_p (x, y) ...@@ -1103,6 +1103,12 @@ rtx_equal_for_memref_p (x, y)
return 0; return 0;
break; break;
/* This can happen for asm operands. */
case 's':
if (strcmp (XSTR (x, i), XSTR (y, i)))
return 0;
break;
/* This can happen for an asm which clobbers memory. */ /* This can happen for an asm which clobbers memory. */
case '0': case '0':
break; break;
......
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