diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-15 22:00:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-15 22:00:31 +0000 |
commit | dac44ec99bf3a3b04d39c8d3c633b4158356cec2 (patch) | |
tree | c52c3061b758a272d64848cb7112b8f910b4a087 /llvm/include/llvm-c/Core.h | |
parent | 3a3e83c3e2bd456f5bc3e1e3b15f4af36d2f5953 (diff) | |
download | bcm5719-llvm-dac44ec99bf3a3b04d39c8d3c633b4158356cec2.tar.gz bcm5719-llvm-dac44ec99bf3a3b04d39c8d3c633b4158356cec2.zip |
Update the C bindings to keep the LLVMTypeKind up to date between the C/C++
stuff. Patch by Zoltan Varga!
llvm-svn: 75842
Diffstat (limited to 'llvm/include/llvm-c/Core.h')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index a22d12ed86f..d723d11111a 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/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 { |