mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-01 12:06:16 +08:00
alias.c (base_alias_check): Add missing return for differing symbols case.
8 * alias.c (base_alias_check): Add missing return for differing symbols case. From-SVN: r24731
This commit is contained in:
parent
c99913856d
commit
b297255190
@ -840,6 +840,8 @@ base_alias_check (x, y, x_mode, y_mode)
|
||||
&& (GET_CODE (XEXP (y, 1)) != CONST_INT
|
||||
|| GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1))))
|
||||
return 1;
|
||||
/* Differing symbols never alias. */
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* If one address is a stack reference there can be no alias:
|
||||
|
Loading…
Reference in New Issue
Block a user