diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-12-19 18:51:17 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-12-19 18:51:17 +0000 |
commit | 035a46f1c068f8457b05365244cf6c08652edcc2 (patch) | |
tree | ffb732814f73dc4aa2877861bd7a28e2094611fd /include/llvm-c/Core.h | |
parent | 447e26d53ed283cb2b18a24d7b0d7e447d03a27e (diff) | |
download | external_llvm-035a46f1c068f8457b05365244cf6c08652edcc2.zip external_llvm-035a46f1c068f8457b05365244cf6c08652edcc2.tar.gz external_llvm-035a46f1c068f8457b05365244cf6c08652edcc2.tar.bz2 |
Add dyn_cast_or_null bindings for some additional classes missed in r61252.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61253 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/Core.h')
-rw-r--r-- | include/llvm-c/Core.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 2516c72..6016ac6 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -340,8 +340,25 @@ void LLVMDisposeTypeHandle(LLVMTypeHandleRef TypeHandle); macro(UnwindInst) \ macro(UnaryInstruction) \ macro(AllocationInst) \ + macro(AllocaInst) \ + macro(MallocInst) \ macro(CastInst) \ - macro(ExtractValueInst) + macro(BitCastInst) \ + macro(FPExtInst) \ + macro(FPToSIInst) \ + macro(FPToUIInst) \ + macro(FPTruncInst) \ + macro(IntToPtrInst) \ + macro(PtrToIntInst) \ + macro(SExtInst) \ + macro(SIToFPInst) \ + macro(TruncInst) \ + macro(UIToFPInst) \ + macro(ZExtInst) \ + macro(ExtractValueInst) \ + macro(FreeInst) \ + macro(LoadInst) \ + macro(VAArgInst) /* Operations on all values */ LLVMTypeRef LLVMTypeOf(LLVMValueRef Val); |