aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm-c
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-03-11 08:08:06 +0000
committerDuncan Sands <baldrick@free.fr>2009-03-11 08:08:06 +0000
commit565f65d171288823bfa916f527478decc5842b45 (patch)
tree524f8864fae13a926989fb2edb5d72e0dc180dbe /include/llvm-c
parentd1718c4a6e8f4d2cf6f168701d9e527c87c95447 (diff)
downloadexternal_llvm-565f65d171288823bfa916f527478decc5842b45.zip
external_llvm-565f65d171288823bfa916f527478decc5842b45.tar.gz
external_llvm-565f65d171288823bfa916f527478decc5842b45.tar.bz2
Remove the one-definition-rule version of extern_weak
linkage: this linkage type only applies to declarations, but ODR is only relevant to globals with definitions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66650 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c')
-rw-r--r--include/llvm-c/Core.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index 5d8cff4..34a91fa 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -127,9 +127,7 @@ typedef enum {
LLVMPrivateLinkage, /**< Like Internal, but omit from symbol table */
LLVMDLLImportLinkage, /**< Function to be imported from DLL */
LLVMDLLExportLinkage, /**< Function to be accessible from DLL */
- LLVMExternalWeakAnyLinkage,/**< ExternalWeak linkage description */
- LLVMExternalWeakODRLinkage,/**< Same, but only replaced by something
- equivalent. */
+ LLVMExternalWeakLinkage,/**< ExternalWeak linkage description */
LLVMGhostLinkage, /**< Stand-in functions for streaming fns from
bitcode */
LLVMCommonAnyLinkage, /**< Tentative definitions */