aboutsummaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.c
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2011-10-13 09:54:50 +0000
committerTom de Vries <vries@gcc.gnu.org>2011-10-13 09:54:50 +0000
commitba30e50da297aae475d10e95cd8d391e1e4dde17 (patch)
tree632f11e927fc77c78227669b4d1bc7c536ad109b /gcc/emit-rtl.c
parent6c9fbfa72eea6d4a8689831977bfde2072fc195a (diff)
downloadgcc-ba30e50da297aae475d10e95cd8d391e1e4dde17.zip
gcc-ba30e50da297aae475d10e95cd8d391e1e4dde17.tar.gz
gcc-ba30e50da297aae475d10e95cd8d391e1e4dde17.tar.bz2
emit-rtl.c (set_mem_attributes_minus_bitpos): Set MEM_READONLY_P for static const strings.
2011-10-13 Tom de Vries <tom@codesourcery.com> * emit-rtl.c (set_mem_attributes_minus_bitpos): Set MEM_READONLY_P for static const strings. * varasm.c (build_constant_desc): Generate the memory location of the constant using gen_const_mem. From-SVN: r179896
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index dae7669..8465237 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -1696,6 +1696,12 @@ set_mem_attributes_minus_bitpos (rtx ref, tree t, int objectp,
&& !TREE_THIS_VOLATILE (base))
MEM_READONLY_P (ref) = 1;
+ /* Mark static const strings readonly as well. */
+ if (base && TREE_CODE (base) == STRING_CST
+ && TREE_READONLY (base)
+ && TREE_STATIC (base))
+ MEM_READONLY_P (ref) = 1;
+
/* If this expression uses it's parent's alias set, mark it such
that we won't change it. */
if (component_uses_parent_alias_set (t))