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.cpp1331 if (unwindLibType) in GetUnwindLibType()
1332 return *unwindLibType; in GetUnwindLibType()
1338 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
1343 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
1345 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
1347 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
1351 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
1353 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
1359 unwindLibType = GetDefaultUnwindLibType(); in GetUnwindLibType()
1362 return *unwindLibType; in GetUnwindLibType()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h196 mutable std::optional<UnwindLibType> unwindLibType; variable