summaryrefslogtreecommitdiff
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
commit5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63 (patch)
tree524f8864fae13a926989fb2edb5d72e0dc180dbe /include/llvm-c
parent841c6a4345082e9a1252cc39bcce7f1423a76ded (diff)
downloadllvm-5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63.tar.gz
llvm-5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63.tar.bz2
llvm-5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63.tar.xz
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 5d8cff414f..34a91fa10f 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 */