aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>2019-09-20 22:03:40 +0000
committerdanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>2019-09-20 22:03:40 +0000
commitf565fb28024711b8e91e8ec742b822f2e09365e4 (patch)
tree2e19ae1607895d919ffe55d68819299f27d85bad
parent08f8d17daed89c9b9b0802fece6f5eb42b2bba28 (diff)
* config/pa/pa.c (pa_trampoline_init): Remove spurious extended
characters. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-7-branch@276010 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/pa/pa.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 533ab1c3f13..6c8ed228bc3 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2019-09-20 John David Anglin <danglin@gcc.gnu.org>
+
+ * config/pa/pa.c (pa_trampoline_init): Remove spurious extended
+ characters.
+
2019-09-20 Andreas Krebbel <krebbel@linux.ibm.com>
Backport from mainline
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c
index 020ac35cc7f..d5d5dd4b60e 100644
--- a/gcc/config/pa/pa.c
+++ b/gcc/config/pa/pa.c
@@ -10200,8 +10200,8 @@ pa_trampoline_init (rtx m_tramp, tree fndecl, rtx chain_value)
}
#ifdef HAVE_ENABLE_EXECUTE_STACK
-  emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__enable_execute_stack"),
-      LCT_NORMAL, VOIDmode, 1, XEXP (m_tramp, 0), Pmode);
+ emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__enable_execute_stack"),
+ LCT_NORMAL, VOIDmode, 1, XEXP (m_tramp, 0), Pmode);
#endif
}