Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp1120 if (unwindLibType) in GetUnwindLibType()
1121 return *unwindLibType; in GetUnwindLibType()
1127 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
1132 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
1134 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
1136 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
1140 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
1142 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
1148 unwindLibType = GetDefaultUnwindLibType(); in GetUnwindLibType()
1151 return *unwindLibType; in GetUnwindLibType()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h197 mutable std::optional<UnwindLibType> unwindLibType; variable