From: Gordon Henriksen Date: Fri, 19 Dec 2008 18:51:17 +0000 (+0000) Subject: Add dyn_cast_or_null bindings for some additional classes missed in r61252. X-Git-Tag: android-x86-6.0-r1~1047^2~16743 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=035a46f1c068f8457b05365244cf6c08652edcc2;p=android-x86%2Fexternal-llvm.git 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 --- diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 2516c72f1fb..6016ac61b52 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);