Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3536 FastMathFlags NewFMF; in mapFromLLVMFastMathFlags() local
3537 NewFMF.setAllowReassoc((FMF & LLVMFastMathAllowReassoc) != 0); in mapFromLLVMFastMathFlags()
3538 NewFMF.setNoNaNs((FMF & LLVMFastMathNoNaNs) != 0); in mapFromLLVMFastMathFlags()
3539 NewFMF.setNoInfs((FMF & LLVMFastMathNoInfs) != 0); in mapFromLLVMFastMathFlags()
3540 NewFMF.setNoSignedZeros((FMF & LLVMFastMathNoSignedZeros) != 0); in mapFromLLVMFastMathFlags()
3541 NewFMF.setAllowReciprocal((FMF & LLVMFastMathAllowReciprocal) != 0); in mapFromLLVMFastMathFlags()
3542 NewFMF.setAllowContract((FMF & LLVMFastMathAllowContract) != 0); in mapFromLLVMFastMathFlags()
3543 NewFMF.setApproxFunc((FMF & LLVMFastMathApproxFunc) != 0); in mapFromLLVMFastMathFlags()
3545 return NewFMF; in mapFromLLVMFastMathFlags()
3549 LLVMFastMathFlags NewFMF = LLVMFastMathNone; in mapToLLVMFastMathFlags() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h308 void setFastMathFlags(FastMathFlags NewFMF) { FMF = NewFMF; } in setFastMathFlags() argument