Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp783 if (unwindLibType) in GetUnwindLibType()
784 return *unwindLibType; in GetUnwindLibType()
790 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
795 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
797 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
799 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
803 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
805 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
811 unwindLibType = GetDefaultUnwindLibType(); in GetUnwindLibType()
814 return *unwindLibType; in GetUnwindLibType()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h171 mutable llvm::Optional<UnwindLibType> unwindLibType; variable