aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDavid Edelsohn <dje.gcc@gmail.com>2016-09-27 14:01:41 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2016-09-27 10:01:41 -0400
commitbfda9a5e8e6cbca41d9a7a64194311a910abc95c (patch)
tree9c3ed0ccf8ee05d1155f89b62130331704d52c04 /gcc
parentbe594fbc037b5a078d02306474e1b591664ad314 (diff)
downloadgcc-bfda9a5e8e6cbca41d9a7a64194311a910abc95c.zip
gcc-bfda9a5e8e6cbca41d9a7a64194311a910abc95c.tar.gz
gcc-bfda9a5e8e6cbca41d9a7a64194311a910abc95c.tar.bz2
* config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify VAR_DECL string.
From-SVN: r240540
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/rs6000/rs6000.c5
2 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ff35a57..895cec5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2016-09-27 David Edelsohn <dje.gcc@gmail.com>
+
+ * config/rs6000/rs6000.c (rs6000_output_symbol): Don't modify
+ VAR_DECL string.
+
2016-09-27 Marek Polacek <polacek@redhat.com>
* config/ia64/ia64.c (ia64_print_operand): Adjust fall through
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 6897b5c..4d3706c 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -30309,7 +30309,10 @@ rs6000_output_symbol_ref (FILE *file, rtx x)
(TREE_CODE (decl) == FUNCTION_DECL
? "[DS]" : "[UA]"),
NULL);
- XSTR (x, 0) = name;
+
+ /* Don't modify name in extern VAR_DECL to include mapping class. */
+ if (TREE_CODE (decl) == FUNCTION_DECL)
+ XSTR (x, 0) = name;
}
if (VTABLE_NAME_P (name))