Home
last modified time | relevance | path

Searched refs:ErrorTag (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lld/include/lld/Common/
H A DErrorHandler.h92 enum class ErrorTag { LibNotFound, SymbolNotFound }; enum
109 void error(const Twine &msg, ErrorTag tag, ArrayRef<StringRef> args);
133 inline void error(const Twine &msg, ErrorTag tag, ArrayRef<StringRef> args) { in error()
/freebsd-13.1/contrib/llvm-project/lld/Common/
H A DErrorHandler.cpp237 void ErrorHandler::error(const Twine &msg, ErrorTag tag, in error()
246 case ErrorTag::LibNotFound: in error()
249 case ErrorTag::SymbolNotFound: in error()
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp934 error(msg, ErrorTag::SymbolNotFound, {sym.getName()}); in reportUndefinedSymbol()
H A DDriver.cpp295 error("unable to find library -l" + name, ErrorTag::LibNotFound, {name}); in addLibrary()