Commit 821a8792 by Clinton Popetz Committed by Clinton Popetz

mips.c (simple_memory_operand): Access the INTVAL of the address, not it's containing MEM.

	* config/mips/mips.c (simple_memory_operand): Access the
	INTVAL of the address, not it's containing MEM.

From-SVN: r34965
parent 9bb2d436
Tue Jul 11 16:26:17 2000 Clinton Popetz <cpopetz@cygnus.com>
* config/mips/mips.c (simple_memory_operand): Access the
INTVAL of the address, not it's containing MEM.
2000-07-11 Bruce Korb <bkorb@gnu.org>
* fixinc/fixtests.c(double_slash): obsolete
......
......@@ -729,7 +729,7 @@ simple_memory_operand (op, mode)
case CONST_INT:
if (TARGET_MIPS16)
return 0;
return SMALL_INT (op);
return SMALL_INT (addr);
case PLUS:
plus0 = XEXP (addr, 0);
......
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