diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm-c/Core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 1442a23..9aa5f07 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -176,7 +176,9 @@ void LLVMSetValueName(LLVMValueRef Val, const char *Name); LLVMValueRef LLVMGetNull(LLVMTypeRef Ty); /* all zeroes */ LLVMValueRef LLVMGetAllOnes(LLVMTypeRef Ty); /* only for int/vector */ LLVMValueRef LLVMGetUndef(LLVMTypeRef Ty); +int LLVMIsConstant(LLVMValueRef Val); int LLVMIsNull(LLVMValueRef Val); +int LLVMIsUndef(LLVMValueRef Val); /* Operations on scalar constants */ LLVMValueRef LLVMGetIntConstant(LLVMTypeRef IntTy, unsigned long long N, |