From: Bill Wendling
Date: Tue, 11 Oct 2011 06:41:28 +0000 (+0000)
Subject: Use the proper name for "externally visible" linkage -- 'external'. This is the
X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f7f06103c25f9b4129e7833c8ce5b8c1b1747a6f;p=oota-llvm.git
Use the proper name for "externally visible" linkage -- 'external'. This is the
keyword in LLVM for externally visible linkage.
PR10636
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141649 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index a28d92efa1a..066f3a5073a 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -35,7 +35,7 @@
'extern_weak' Linkage
'linkonce_odr' Linkage
'weak_odr' Linkage
- 'externally visible' Linkage
+ 'external' Linkage
'dllimport' Linkage
'dllexport' Linkage
@@ -647,7 +647,7 @@ define i32 @main() { ; i32()*
be merged with equivalent globals. These linkage types are otherwise the
same as their non-odr versions.
- externally visible:
+ external:
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.
@@ -680,8 +680,8 @@ define i32 @main() { ; i32()*
declarations), they are accessible outside of the current module.
It is illegal for a function declaration to have any linkage type
- other than "externally visible", dllimport
- or extern_weak.
+ other than external, dllimport
+ or extern_weak.
Aliases can have only external, internal, weak
or weak_odr linkages.