diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-11 06:41:28 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-11 06:41:28 +0000 |
commit | b4d076e37e7ef3d4ea469408f900619ca527501c (patch) | |
tree | 3409dcd3eb1915458b1c8329c8791ab928aa843f /llvm | |
parent | 05d9151d2c4e9fc857099c2706dc9c93a873c884 (diff) | |
download | bcm5719-llvm-b4d076e37e7ef3d4ea469408f900619ca527501c.tar.gz bcm5719-llvm-b4d076e37e7ef3d4ea469408f900619ca527501c.zip |
Use the proper name for "externally visible" linkage -- 'external'. This is the
keyword in LLVM for externally visible linkage.
PR10636
llvm-svn: 141649
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/LangRef.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index a28d92efa1a..066f3a5073a 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -35,7 +35,7 @@ <li><a href="#linkage_externweak">'<tt>extern_weak</tt>' Linkage</a></li> <li><a href="#linkage_linkonce_odr">'<tt>linkonce_odr</tt>' Linkage</a></li> <li><a href="#linkage_weak">'<tt>weak_odr</tt>' Linkage</a></li> - <li><a href="#linkage_external">'<tt>externally visible</tt>' Linkage</a></li> + <li><a href="#linkage_external">'<tt>external</tt>' Linkage</a></li> <li><a href="#linkage_dllimport">'<tt>dllimport</tt>' Linkage</a></li> <li><a href="#linkage_dllexport">'<tt>dllexport</tt>' Linkage</a></li> </ol> @@ -647,7 +647,7 @@ define i32 @main() { <i>; i32()* </i> be merged with equivalent globals. These linkage types are otherwise the same as their non-<tt>odr</tt> versions.</dd> - <dt><tt><b><a name="linkage_external">externally visible</a></b></tt>:</dt> + <dt><tt><b><a name="linkage_external">external</a></b></tt>:</dt> <dd>If none of the above identifiers are used, the global is externally visible, meaning that it participates in linkage and can be used to resolve external symbol references.</dd> @@ -680,8 +680,8 @@ define i32 @main() { <i>; i32()* </i> declarations), they are accessible outside of the current module.</p> <p>It is illegal for a function <i>declaration</i> to have any linkage type - other than "externally visible", <tt>dllimport</tt> - or <tt>extern_weak</tt>.</p> + other than <tt>external</tt>, <tt>dllimport</tt> + or <tt>extern_weak</tt>.</p> <p>Aliases can have only <tt>external</tt>, <tt>internal</tt>, <tt>weak</tt> or <tt>weak_odr</tt> linkages.</p> |