ΒΆLLVMValueRef LLVMConstInt(LLVMTypeRef IntTy,
                          unsigned long long N,
                          LLVMBool SignExtend)
LLVMValueRef LLVMConstInt(LLVMTypeRef IntTy,
                          unsigned long long N,
                          LLVMBool SignExtend)Description
Obtain a constant value for an integer type. The returned value corresponds to a llvm::ConstantInt.
Declared at: llvm/include/llvm-c/Core.h:1876
Parameters
- LLVMTypeRef IntTy
 - Integer type to obtain value of.
 - unsigned long long N
 - The value the returned instance should refer to.
 - LLVMBool SignExtend
 - Whether to sign extend the produced value.