Commit be6568d8 by Luis Machado Committed by Peter Bergner

alias.c (find_base_term): Synch LO_SUM handling with what find_base_value does.

	2008-12-08  Luis Machado  <luisgpm@br.ibm.com>
	* alias.c (find_base_term): Synch LO_SUM handling with what
	find_base_value does.

From-SVN: r142553
parent 41e9641b
2008-12-08 Luis Machado <luisgpm@br.ibm.com>
* alias.c (find_base_term): Synch LO_SUM handling with what
find_base_value does.
2008-12-08 Andrew Haley <aph@redhat.com> 2008-12-08 Andrew Haley <aph@redhat.com>
Kamaraju Kusumanchi <raju.mailinglists@gmail.com> Kamaraju Kusumanchi <raju.mailinglists@gmail.com>
...@@ -1408,6 +1408,9 @@ find_base_term (rtx x) ...@@ -1408,6 +1408,9 @@ find_base_term (rtx x)
return 0; return 0;
/* Fall through. */ /* Fall through. */
case LO_SUM: case LO_SUM:
/* The standard form is (lo_sum reg sym) so look only at the
second operand. */
return find_base_term (XEXP (x, 1));
case PLUS: case PLUS:
case MINUS: case MINUS:
{ {
......
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