aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2018-12-14 09:48:50 -0700
committerJeff Law <law@gcc.gnu.org>2018-12-14 09:48:50 -0700
commit7e1f39b6aa7e01a31a9db07f85eed4f8fce08db9 (patch)
treef8818c0da3abf8ba495baebb3a460a207f405932
parentdddb7af4e7f76eed190876427902d99016ded180 (diff)
downloadgcc-7e1f39b6aa7e01a31a9db07f85eed4f8fce08db9.zip
gcc-7e1f39b6aa7e01a31a9db07f85eed4f8fce08db9.tar.gz
gcc-7e1f39b6aa7e01a31a9db07f85eed4f8fce08db9.tar.bz2
* target.def (post_cfi_startproc): Fix text.
From-SVN: r267136
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/target.def3
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6ce0658..99f8306 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2018-12-14 Jeff Law <law@redhat.com>
+
+ * target.def (post_cfi_startproc): Fix text.
+
2018-12-14 Sam Tebbs <sam.tebbs@arm.com>
* doc/tm.texi (TARGET_ASM_POST_CFI_STARTPROC): Define.
diff --git a/gcc/target.def b/gcc/target.def
index c425341..698c3aa 100644
--- a/gcc/target.def
+++ b/gcc/target.def
@@ -98,7 +98,8 @@ DEFHOOK
(post_cfi_startproc,
"This target hook is used to emit assembly strings required by the target\n\
after the .cfi_startproc directive. The first argument is the file stream to\n\
-write the strings to and the second argument is the function\'s declaration.\n\
+write the strings to and the second argument is the function\'s declaration. The\n\
+expected use is to add more .cfi_* directives.\n\
\n\
The default is to not output any assembly strings.",
void, (FILE *, tree),