summaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-01 14:04:25 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-01 14:04:25 +0000
commit342f389720577eaa20f8e059bb40b2ef399abc83 (patch)
treef5ae1df70fcdf46fa25a032e9ff6e13c63dcc5b7 /gcc/explow.c
parent7ea8bf17d70a063b81a2c83e11eac6dad163c624 (diff)
downloadgcc-342f389720577eaa20f8e059bb40b2ef399abc83.tar.gz
* explow.c (convert_memory_address, case SYMBOL_REF): Copy
STRING_POOL_ADDRESS_P. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38589 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/explow.c')
-rw-r--r--gcc/explow.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index 92de3418cfb..a1c6380bcc8 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -395,6 +395,7 @@ convert_memory_address (to_mode, x)
temp = gen_rtx_SYMBOL_REF (to_mode, XSTR (x, 0));
SYMBOL_REF_FLAG (temp) = SYMBOL_REF_FLAG (x);
CONSTANT_POOL_ADDRESS_P (temp) = CONSTANT_POOL_ADDRESS_P (x);
+ STRING_POOL_ADDRESS_P (temp) = STRING_POOL_ADDRESS_P (x);
return temp;
case CONST: