Home
last modified time | relevance | path

Searched refs:MathErrno (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DFPOptions.def30 FP_OPTION(MathErrno, bool, 1, BFloat16ExcessPrecision)
31 FP_OPTION(ComplexRange, LangOptions::ComplexRangeKind, 3, MathErrno)
H A DLangOptions.def153 LANGOPT(MathErrno , 1, 1, NotCompatible, "errno in math functions")
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp2783 bool MathErrno = TC.IsMathErrnoDefault(); in RenderFloatingPointOptions() local
2842 MathErrno = false; in RenderFloatingPointOptions()
2882 llvm::make_scope_exit([&, MathErrnoBeforeArg = MathErrno] { in RenderFloatingPointOptions()
2883 if (NoMathErrnoWasImpliedByVecLib && !MathErrnoBeforeArg && MathErrno) in RenderFloatingPointOptions()
2984 MathErrno = TC.IsMathErrnoDefault(); in RenderFloatingPointOptions()
3039 case options::OPT_fmath_errno: MathErrno = true; break; in RenderFloatingPointOptions()
3040 case options::OPT_fno_math_errno: MathErrno = false; break; in RenderFloatingPointOptions()
3064 MathErrno = false; in RenderFloatingPointOptions()
3226 MathErrno = TC.IsMathErrnoDefault(); in RenderFloatingPointOptions()
3289 if (MathErrno) { in RenderFloatingPointOptions()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp1340 if (!LangOpts.MathErrno) in InitializePredefinedMacros()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp51 if (!CGF.CGM.getLangOpts().MathErrno && in shouldEmitBuiltinAsIR()
820 if (ConstWithoutErrnoAndExceptions && CGF.CGM.getLangOpts().MathErrno && in emitLibraryCall()
2690 (!getLangOpts().MathErrno && in EmitBuiltinExpr()
2698 (!getLangOpts().MathErrno && in EmitBuiltinExpr()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp16978 (!getLangOpts().MathErrno && NoExceptions)) && in AddKnownFunctionAttributes()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2275 LangOpts<"MathErrno">, DefaultFalse,