Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DToolChain.cpp780 if (unwindLibType) in GetUnwindLibType()
781 return *unwindLibType; in GetUnwindLibType()
787 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
792 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
794 unwindLibType = ToolChain::UNW_None; in GetUnwindLibType()
796 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
800 unwindLibType = ToolChain::UNW_CompilerRT; in GetUnwindLibType()
802 unwindLibType = ToolChain::UNW_Libgcc; in GetUnwindLibType()
808 unwindLibType = GetDefaultUnwindLibType(); in GetUnwindLibType()
811 return *unwindLibType; in GetUnwindLibType()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DToolChain.h171 mutable llvm::Optional<UnwindLibType> unwindLibType; variable