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.h4348 LLVMBool LLVMGetNUW(LLVMValueRef ArithInst);
4349 void LLVMSetNUW(LLVMValueRef ArithInst, LLVMBool HasNUW);
4350 LLVMBool LLVMGetNSW(LLVMValueRef ArithInst);
4351 void LLVMSetNSW(LLVMValueRef ArithInst, LLVMBool HasNSW);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3730 LLVMBool LLVMGetNUW(LLVMValueRef ArithInst) { in LLVMGetNUW() argument
3731 Value *P = unwrap<Value>(ArithInst); in LLVMGetNUW()
3735 void LLVMSetNUW(LLVMValueRef ArithInst, LLVMBool HasNUW) { in LLVMSetNUW() argument
3736 Value *P = unwrap<Value>(ArithInst); in LLVMSetNUW()
3740 LLVMBool LLVMGetNSW(LLVMValueRef ArithInst) { in LLVMGetNSW() argument
3741 Value *P = unwrap<Value>(ArithInst); in LLVMGetNSW()
3745 void LLVMSetNSW(LLVMValueRef ArithInst, LLVMBool HasNSW) { in LLVMSetNSW() argument
3746 Value *P = unwrap<Value>(ArithInst); in LLVMSetNSW()