summaryrefslogtreecommitdiff
path: root/include/llvm-c
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-07-20 18:22:52 +0000
committerBill Wendling <isanbard@gmail.com>2009-07-20 18:22:52 +0000
commit39a499b6c471e1db9853e9c8d087ca83f106c5d5 (patch)
treeab4955496d42998da1021eda3eba9aa673144746 /include/llvm-c
parent1902fd9605ab33798408405e840be3d9bdebbd90 (diff)
downloadllvm-39a499b6c471e1db9853e9c8d087ca83f106c5d5.tar.gz
llvm-39a499b6c471e1db9853e9c8d087ca83f106c5d5.tar.bz2
llvm-39a499b6c471e1db9853e9c8d087ca83f106c5d5.tar.xz
Put new enum at end of list to avoid changing ABI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c')
-rw-r--r--include/llvm-c/Core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index 5d4b091ece..0d6e2488c5 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -141,13 +141,13 @@ typedef enum {
LLVMInternalLinkage, /**< Rename collisions when linking (static
functions) */
LLVMPrivateLinkage, /**< Like Internal, but omit from symbol table */
- LLVMLinkerPrivateLinkage, /**< Like Private, but linker removes. */
LLVMDLLImportLinkage, /**< Function to be imported from DLL */
LLVMDLLExportLinkage, /**< Function to be accessible from DLL */
LLVMExternalWeakLinkage,/**< ExternalWeak linkage description */
LLVMGhostLinkage, /**< Stand-in functions for streaming fns from
bitcode */
- LLVMCommonLinkage /**< Tentative definitions */
+ LLVMCommonLinkage, /**< Tentative definitions */
+ LLVMLinkerPrivateLinkage /**< Like Private, but linker removes. */
} LLVMLinkage;
typedef enum {