From: plouj Date: Tue, 13 Nov 2018 19:30:00 +0000 (+0000) Subject: 2018-11-13 Michael Ploujnikov X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0df1cbdea06c467ab5de4c9048949223502e87e6;p=thirdparty%2Fgcc.git 2018-11-13 Michael Ploujnikov * doc/extend.texi: Fix typo in the weakref description. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@266083 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2ca27ff84687..1feb1bd6d176 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2018-11-13 Michael Ploujnikov + + * doc/extend.texi: Fix typo in the weakref description. + 2018-11-13 Richard Biener PR tree-optimization/86991 diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 5b180e76b214..15d973a7f482 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}.