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
This commit is contained in:
Jeffrey A Law 1998-05-21 22:12:04 +00:00 committed by Jeff Law
parent f9c3243c67
commit aee21ba9f7
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -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. */