diff options
author | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-02 15:25:21 +0000 |
---|---|---|
committer | gerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-02 15:25:21 +0000 |
commit | bc2e3b16f1785746d1abdc9d5ba0108e5788e80f (patch) | |
tree | 3616526ff4912d53125b49499ee1c57252944566 /gcc/doc/extend.texi | |
parent | 746a1b37cd308d2c795256089e106e3197854465 (diff) | |
download | gcc-bc2e3b16f1785746d1abdc9d5ba0108e5788e80f.tar.gz |
* doc/extend.texi (Function Attributes): Fix a typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@158975 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/extend.texi')
-rw-r--r-- | gcc/doc/extend.texi | 2 |
1 files changed, 1 insertions, 1 deletions
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. |