diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-01-01 14:04:25 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-01-01 09:04:25 -0500 |
commit | 7d797311fb4c1883b6b32fe9d72ed8fe5f002a3b (patch) | |
tree | f5ae1df70fcdf46fa25a032e9ff6e13c63dcc5b7 /gcc/explow.c | |
parent | 4746e0fe7855699cdf15ddc4bc98e75db040ee47 (diff) | |
download | gcc-7d797311fb4c1883b6b32fe9d72ed8fe5f002a3b.zip gcc-7d797311fb4c1883b6b32fe9d72ed8fe5f002a3b.tar.gz gcc-7d797311fb4c1883b6b32fe9d72ed8fe5f002a3b.tar.bz2 |
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
Diffstat (limited to 'gcc/explow.c')
-rw-r--r-- | gcc/explow.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/explow.c b/gcc/explow.c index 92de3418..a1c6380 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: |