summaryrefslogtreecommitdiff
path: root/include/llvm-c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-15 22:00:31 +0000
committerChris Lattner <sabre@nondot.org>2009-07-15 22:00:31 +0000
commit0df5c8e3f1061cd23f8abde64840828f713d4597 (patch)
treece56f62e6754f950cf8047a79451f6f787f18726 /include/llvm-c
parent23702eacab9d7fa21f250113d02e413a7ac50fda (diff)
downloadllvm-0df5c8e3f1061cd23f8abde64840828f713d4597.tar.gz
llvm-0df5c8e3f1061cd23f8abde64840828f713d4597.tar.bz2
llvm-0df5c8e3f1061cd23f8abde64840828f713d4597.tar.xz
Update the C bindings to keep the LLVMTypeKind up to date between the C/C++
stuff. Patch by Zoltan Varga! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c')
-rw-r--r--include/llvm-c/Core.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index a22d12ed86..d723d11111 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -115,7 +115,8 @@ typedef enum {
LLVMArrayTypeKind, /**< Arrays */
LLVMPointerTypeKind, /**< Pointers */
LLVMOpaqueTypeKind, /**< Opaque: type with unknown structure */
- LLVMVectorTypeKind /**< SIMD 'packed' format, or other vector type */
+ LLVMVectorTypeKind, /**< SIMD 'packed' format, or other vector type */
+ LLVMMetadataTypeKind /**< Metadata */
} LLVMTypeKind;
typedef enum {