aboutsummaryrefslogtreecommitdiffstats
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
commitfdc1a01d6f1afa7fcdb0ef8be63e830bab35f01b (patch)
treece56f62e6754f950cf8047a79451f6f787f18726 /include/llvm-c
parent71149cb2b3f59bb897bfe0d9f7d82ca7d5789729 (diff)
downloadexternal_llvm-fdc1a01d6f1afa7fcdb0ef8be63e830bab35f01b.zip
external_llvm-fdc1a01d6f1afa7fcdb0ef8be63e830bab35f01b.tar.gz
external_llvm-fdc1a01d6f1afa7fcdb0ef8be63e830bab35f01b.tar.bz2
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 a22d12e..d723d11 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 {