Commit 7d797311 by Richard Kenner Committed by Richard Kenner

explow.c (convert_memory_address, [...]): Copy STRING_POOL_ADDRESS_P.

	* explow.c (convert_memory_address, case SYMBOL_REF): Copy
	STRING_POOL_ADDRESS_P.

From-SVN: r38589
parent 4746e0fe
Mon Jan 1 07:38:33 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Mon Jan 1 07:38:33 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* explow.c (convert_memory_address, case SYMBOL_REF): Copy
STRING_POOL_ADDRESS_P.
* config/sparc/sparc.c (input_operand): Properly test for short op. * config/sparc/sparc.c (input_operand): Properly test for short op.
* config.gcc (sparc-*-elf): Include sparc/sol2.h. * config.gcc (sparc-*-elf): Include sparc/sol2.h.
......
...@@ -395,6 +395,7 @@ convert_memory_address (to_mode, x) ...@@ -395,6 +395,7 @@ convert_memory_address (to_mode, x)
temp = gen_rtx_SYMBOL_REF (to_mode, XSTR (x, 0)); temp = gen_rtx_SYMBOL_REF (to_mode, XSTR (x, 0));
SYMBOL_REF_FLAG (temp) = SYMBOL_REF_FLAG (x); SYMBOL_REF_FLAG (temp) = SYMBOL_REF_FLAG (x);
CONSTANT_POOL_ADDRESS_P (temp) = CONSTANT_POOL_ADDRESS_P (x); CONSTANT_POOL_ADDRESS_P (temp) = CONSTANT_POOL_ADDRESS_P (x);
STRING_POOL_ADDRESS_P (temp) = STRING_POOL_ADDRESS_P (x);
return temp; return temp;
case CONST: case CONST:
......
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