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 | 05a868f7af4e0fd3d3fd7d163db25a28d54ae195 (patch) | |
tree | 11355383d40cd098d41eb103e2f0353d5a2eb96d /llvm/include/llvm-c/Core.h | |
parent | 29e3894e7dfc416accb3c5469d90eabaed20e4c1 (diff) | |
download | bcm5719-llvm-05a868f7af4e0fd3d3fd7d163db25a28d54ae195.tar.gz bcm5719-llvm-05a868f7af4e0fd3d3fd7d163db25a28d54ae195.zip |
Add dyn_cast_or_null bindings for some additional classes missed in r61252.
llvm-svn: 61253
Diffstat (limited to 'llvm/include/llvm-c/Core.h')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 2516c72f1fb..6016ac61b52 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/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); |