Commit e3f049a8 by James E Wilson Committed by Jim Wilson

re PR rtl-optimization/11319 (loop miscompiled on ppc32)

PR optimization/11319
PR target/10021
* alias.c (find_base_value, case REG): Return 0 not src if no base
found.

From-SVN: r70359
parent 2803847d
2003-08-11 James E Wilson <wilson@tuliptree.org>
PR optimization/11319
PR target/10021
* alias.c (find_base_value, case REG): Return 0 not src if no base
found.
2003-08-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcse.c (gmalloc): Fix last change.
......
......@@ -782,7 +782,7 @@ find_base_value (rtx src)
return reg_base_value[regno];
}
return src;
return 0;
case MEM:
/* Check for an argument passed in memory. Only record in the
......
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