Searched refs:NewFMF (Results 1 – 2 of 2) sorted by relevance
3536 FastMathFlags NewFMF; in mapFromLLVMFastMathFlags() local3537 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 …]
308 void setFastMathFlags(FastMathFlags NewFMF) { FMF = NewFMF; } in setFastMathFlags() argument