Commit aee21ba9 by Jeffrey A Law Committed by Jeff Law

alias.c (rtx_equal_for_memref_p): Handle SCRATCH as a memory address.

        * alias.c (rtx_equal_for_memref_p): Handle SCRATCH as a memory
        address.

From-SVN: r19936
parent f9c3243c
Thu May 21 23:09:50 1998 Jeffrey A Law (law@cygnus.com)
* alias.c (rtx_equal_for_memref_p): Handle SCRATCH as a memory
address.
Thu May 21 20:18:13 1998 Martin von Loewis <loewis@informatik.hu-berlin.de>
* Makefile.in (TREE_H): Add tree-check.h.
......
......@@ -467,6 +467,10 @@ rtx_equal_for_memref_p (x, y)
return 0;
break;
/* This can happen for an asm which clobbers memory. */
case '0':
break;
/* It is believed that rtx's at this level will never
contain anything but integers and other rtx's,
except for within LABEL_REFs and SYMBOL_REFs. */
......
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