Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp1073 if (unwindLibType) in GetUnwindLibType()
1074 return *unwindLibType; in GetUnwindLibType()
1080 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
1085 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
1087 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
1089 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
1093 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
1095 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
1101 unwindLibType = GetDefaultUnwindLibType(); in GetUnwindLibType()
1104 return *unwindLibType; in GetUnwindLibType()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h190 mutable std::optional<UnwindLibType> unwindLibType; variable