mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-20 13:30:01 +08:00
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
This commit is contained in:
parent
2803847d40
commit
e3f049a88e
@ -1,3 +1,10 @@
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user