Home
last modified time | relevance | path

Searched refs:ArithInst (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h4596 LLVM_C_ABI LLVMBool LLVMGetNUW(LLVMValueRef ArithInst);
4597 LLVM_C_ABI void LLVMSetNUW(LLVMValueRef ArithInst, LLVMBool HasNUW);
4598 LLVM_C_ABI LLVMBool LLVMGetNSW(LLVMValueRef ArithInst);
4599 LLVM_C_ABI void LLVMSetNSW(LLVMValueRef ArithInst, LLVMBool HasNSW);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3785 LLVMBool LLVMGetNUW(LLVMValueRef ArithInst) { in LLVMGetNUW() argument
3786 Value *P = unwrap<Value>(ArithInst); in LLVMGetNUW()
3790 void LLVMSetNUW(LLVMValueRef ArithInst, LLVMBool HasNUW) { in LLVMSetNUW() argument
3791 Value *P = unwrap<Value>(ArithInst); in LLVMSetNUW()
3795 LLVMBool LLVMGetNSW(LLVMValueRef ArithInst) { in LLVMGetNSW() argument
3796 Value *P = unwrap<Value>(ArithInst); in LLVMGetNSW()
3800 void LLVMSetNSW(LLVMValueRef ArithInst, LLVMBool HasNSW) { in LLVMSetNSW() argument
3801 Value *P = unwrap<Value>(ArithInst); in LLVMSetNSW()