Make LLVMConstInt transparently work with bignums.
[cl-llvm.git] / src / generated / analysis.lisp
blobb0adf6abc1d30e7e56dee59890036bec4c2f574b
1 ;;; This file was automatically generated by SWIG (http://www.swig.org).
2 ;;; Version 1.3.40
3 ;;;
4 ;;; Do not make changes to this file unless you know what you are doing--modify
5 ;;; the SWIG interface file instead.
7 (in-package :llvm)
10 (cffi:defcenum LLVMVerifierFailureAction
11 :LLVMAbortProcessAction
12 :LLVMPrintMessageAction
13 :LLVMReturnStatusAction)
15 (cffi:defcfun ("LLVMVerifyModule" LLVMVerifyModule) :boolean
16 (M LLVMModuleRef)
17 (Action LLVMVerifierFailureAction)
18 (OutMessage :pointer))
20 (cffi:defcfun ("LLVMVerifyFunction" LLVMVerifyFunction) :boolean
21 (Fn LLVMValueRef)
22 (Action LLVMVerifierFailureAction))
24 (cffi:defcfun ("LLVMViewFunctionCFG" LLVMViewFunctionCFG) :void
25 (Fn LLVMValueRef))
27 (cffi:defcfun ("LLVMViewFunctionCFGOnly" LLVMViewFunctionCFGOnly) :void
28 (Fn LLVMValueRef))