[llvm-commits] [llvm] r61253 - /llvm/trunk/include/llvm-c/Core.h

Gordon Henriksen gordonhenriksen at mac.com
Fri Dec 19 10:51:18 PST 2008


Author: gordon
Date: Fri Dec 19 12:51:17 2008
New Revision: 61253

URL: http://llvm.org/viewvc/llvm-project?rev=61253&view=rev
Log:
Add dyn_cast_or_null bindings for some additional classes missed in r61252.

Modified:
    llvm/trunk/include/llvm-c/Core.h

Modified: llvm/trunk/include/llvm-c/Core.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/Core.h?rev=61253&r1=61252&r2=61253&view=diff

==============================================================================
--- llvm/trunk/include/llvm-c/Core.h (original)
+++ llvm/trunk/include/llvm-c/Core.h Fri Dec 19 12:51:17 2008
@@ -340,8 +340,25 @@
         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);





More information about the llvm-commits mailing list