aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Ploujnikov <michael.ploujnikov@oracle.com>2018-11-13 19:30:00 +0000
committerMichael Ploujnikov <plouj@gcc.gnu.org>2018-11-13 19:30:00 +0000
commitee8393f465b6b06cc16499f7f7cfcbc3dc797d9b (patch)
treea341716ddb84af0ec47288443cc416de2d99d0ac
parent95bdc37a75dcc4dcb5cc829818fcc9edd995b5ec (diff)
downloadgcc-ee8393f465b6b06cc16499f7f7cfcbc3dc797d9b.zip
gcc-ee8393f465b6b06cc16499f7f7cfcbc3dc797d9b.tar.gz
gcc-ee8393f465b6b06cc16499f7f7cfcbc3dc797d9b.tar.bz2
extend.texi: Fix typo in the weakref description.
2018-11-13 Michael Ploujnikov <michael.ploujnikov@oracle.com> * doc/extend.texi: Fix typo in the weakref description. From-SVN: r266083
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/extend.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2ca27ff..1feb1bd 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2018-11-13 Michael Ploujnikov <michael.ploujnikov@oracle.com>
+
+ * doc/extend.texi: Fix typo in the weakref description.
+
2018-11-13 Richard Biener <rguenther@suse.de>
PR tree-optimization/86991
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index 5b180e7..15d973a 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -3653,7 +3653,7 @@ symbol, not necessarily in the same translation unit.
The effect is equivalent to moving all references to the alias to a
separate translation unit, renaming the alias to the aliased symbol,
declaring it as weak, compiling the two separate translation units and
-performing a reloadable link on them.
+performing a link with relocatable output (ie: @code{ld -r}) on them.
At present, a declaration to which @code{weakref} is attached can
only be @code{static}.