diff options
author | Duncan Sands <baldrick@free.fr> | 2009-03-11 08:08:06 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-03-11 08:08:06 +0000 |
commit | 5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63 (patch) | |
tree | 524f8864fae13a926989fb2edb5d72e0dc180dbe /include/llvm-c | |
parent | 841c6a4345082e9a1252cc39bcce7f1423a76ded (diff) | |
download | external_llvm-5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63.zip external_llvm-5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63.tar.gz external_llvm-5f4ee1fc5d00ae55c30fa2ce450c69be4c6d6e63.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.h | 4 |
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 */ |