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
This commit is contained in:
Michael Ploujnikov 2018-11-13 19:30:00 +00:00 committed by Michael Ploujnikov
parent 95bdc37a75
commit ee8393f465
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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}.