diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 306fa8b75f4..4cb8a344826 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-05-02 Bruno Haible + + * doc/extend.texi (Function Attributes): Fix a typo. + 2010-05-02 Uros Bizjak Revert: diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 97d18e5fa90..bf748636083 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -3503,7 +3503,7 @@ static int x() __attribute__ ((alias ("y"))); A weak reference is an alias that does not by itself require a definition to be given for the target symbol. If the target symbol is -only referenced through weak references, then the becomes a @code{weak} +only referenced through weak references, then it becomes a @code{weak} undefined symbol. If it is directly referenced, however, then such strong references prevail, and a definition will be required for the symbol, not necessarily in the same translation unit.