summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-12-04 02:19:25 +0000
committerSean Silva <silvas@purdue.edu>2013-12-04 02:19:25 +0000
commitfe50a2661d2085d6d2fd71047462acb6e73dc9fd (patch)
tree428c2f1ee8cae7e4a353ad90092d8f1b4744e887
parentd060bfc11e60ed8565d241286ba7de0b59467698 (diff)
downloadllvm-fe50a2661d2085d6d2fd71047462acb6e73dc9fd.tar.gz
llvm-fe50a2661d2085d6d2fd71047462acb6e73dc9fd.tar.bz2
llvm-fe50a2661d2085d6d2fd71047462acb6e73dc9fd.tar.xz
[LangRef] Remove (non-normative) paragraph that doesn't make sense.
It appears to be referring to nonexistent entities. This must be a carry-over from an older version of the document. Patch by Mikael Lyngvig! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196342 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LangRef.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/LangRef.rst b/docs/LangRef.rst
index 810455cbc3..77d37df4e7 100644
--- a/docs/LangRef.rst
+++ b/docs/LangRef.rst
@@ -291,12 +291,6 @@ symbols from (to) DLLs (Dynamic Link Libraries).
name is formed by combining ``__imp_`` and the function or variable
name.
-For example, since the "``.LC0``" variable is defined to be internal, if
-another module defined a "``.LC0``" variable and was linked with this
-one, one of the two would be renamed, preventing a collision. Since
-"``main``" and "``puts``" are external (i.e., lacking any linkage
-declarations), they are accessible outside of the current module.
-
It is illegal for a function *declaration* to have any linkage type
other than ``external``, ``dllimport`` or ``extern_weak``.