Commit 27314274 by Jim Wilson Committed by Jim Wilson

Fix m68k-next-nextstep3 stage2 enquire compilation hang reported by Moene.

	* alias.c (true_dependence): Pass x_addr not x to varies.

From-SVN: r14898
parent 19372aa1
Fri Aug 22 14:05:55 1997 Jim Wilson <wilson@cygnus.com>
* alias.c (true_dependence): Pass x_addr not x to varies.
* acconfig.h (NEED_DECLARATION_CALLOC): Add.
* configure.in: Add GCC_NEED_DECLARATION call for calloc.
* rs6000/xm-rs6000.h (malloc, realloc, calloc, free): Delete
......
......@@ -825,7 +825,7 @@ true_dependence (mem, mem_mode, x, varies)
If either memory reference is a variable structure the other is a
fixed scalar and there is no aliasing. */
if ((MEM_IN_STRUCT_P (mem) && varies (mem_addr))
|| (MEM_IN_STRUCT_P (x) && varies (x)))
|| (MEM_IN_STRUCT_P (x) && varies (x_addr)))
return 0;
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