Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Driver/
H A DToolChain.cpp846 if (unwindLibType) in GetUnwindLibType()
847 return *unwindLibType; in GetUnwindLibType()
853 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
858 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
860 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
862 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
866 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
868 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
874 unwindLibType = GetDefaultUnwindLibType(); in GetUnwindLibType()
877 return *unwindLibType; in GetUnwindLibType()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DToolChain.h182 mutable llvm::Optional<UnwindLibType> unwindLibType; variable