Commit b2972551 by Jeff Law

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
parent c9991385
...@@ -840,6 +840,8 @@ base_alias_check (x, y, x_mode, y_mode) ...@@ -840,6 +840,8 @@ base_alias_check (x, y, x_mode, y_mode)
&& (GET_CODE (XEXP (y, 1)) != CONST_INT && (GET_CODE (XEXP (y, 1)) != CONST_INT
|| GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1)))) || GET_MODE_UNIT_SIZE (x_mode) < -INTVAL (XEXP (y, 1))))
return 1; return 1;
/* Differing symbols never alias. */
return 0;
} }
/* If one address is a stack reference there can be no alias: /* If one address is a stack reference there can be no alias:
......
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