Lines Matching defs:NewFMF
3584 FastMathFlags NewFMF;
3585 NewFMF.setAllowReassoc((FMF & LLVMFastMathAllowReassoc) != 0);
3586 NewFMF.setNoNaNs((FMF & LLVMFastMathNoNaNs) != 0);
3587 NewFMF.setNoInfs((FMF & LLVMFastMathNoInfs) != 0);
3588 NewFMF.setNoSignedZeros((FMF & LLVMFastMathNoSignedZeros) != 0);
3589 NewFMF.setAllowReciprocal((FMF & LLVMFastMathAllowReciprocal) != 0);
3590 NewFMF.setAllowContract((FMF & LLVMFastMathAllowContract) != 0);
3591 NewFMF.setApproxFunc((FMF & LLVMFastMathApproxFunc) != 0);
3593 return NewFMF;
3597 LLVMFastMathFlags NewFMF = LLVMFastMathNone;
3599 NewFMF |= LLVMFastMathAllowReassoc;
3601 NewFMF |= LLVMFastMathNoNaNs;
3603 NewFMF |= LLVMFastMathNoInfs;
3605 NewFMF |= LLVMFastMathNoSignedZeros;
3607 NewFMF |= LLVMFastMathAllowReciprocal;
3609 NewFMF |= LLVMFastMathAllowContract;
3611 NewFMF |= LLVMFastMathApproxFunc;
3613 return NewFMF;