Commit 57163df0 by Jim Wilson Committed by Jim Wilson

Fix minor alias typo found while working on H.J. Lu's alpha-linux alias bug.

	* alias.c (true_dependence): Test x for BLKmode, in addition to mem.

From-SVN: r15061
parent 3d015f46
Wed Sep 3 10:39:42 1997 Jim Wilson <wilson@cygnus.com>
* alias.c (true_dependence): Test x for BLKmode, in addition to mem.
Wed Sep 3 09:28:50 CDT 1997 Joel Sherrill (joel@OARcorp.com)
* i386/go32-rtems.h, i386/rtems.h, i960/rtems.h, m68k/rtems.h,
......
......@@ -815,7 +815,7 @@ true_dependence (mem, mem_mode, x, varies)
about aliasing. */
if (MEM_IN_STRUCT_P (x) == MEM_IN_STRUCT_P (mem)
|| mem_mode == QImode || mem_mode == BLKmode
|| GET_MODE (x) == QImode || GET_MODE (mem) == BLKmode
|| GET_MODE (x) == QImode || GET_MODE (x) == BLKmode
|| varies (x_addr) == varies (mem_addr))
return 1;
......
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