Searched refs:ErrorTag (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lld/include/lld/Common/ |
H A D | ErrorHandler.h | 88 enum class ErrorTag { LibNotFound, SymbolNotFound }; enum 111 void error(const Twine &msg, ErrorTag tag, ArrayRef<StringRef> args); 148 void error(const Twine &msg, ErrorTag tag, ArrayRef<StringRef> args);
|
/freebsd/contrib/llvm-project/lld/Common/ |
H A D | ErrorHandler.cpp | 57 void lld::error(const Twine &msg, ErrorTag tag, ArrayRef<StringRef> args) { in error() 289 void ErrorHandler::error(const Twine &msg, ErrorTag tag, in error() 298 case ErrorTag::LibNotFound: in error() 301 case ErrorTag::SymbolNotFound: in error()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Relocations.cpp | 795 error(msg, ErrorTag::SymbolNotFound, {sym.getName()}); in reportUndefinedSymbol()
|
H A D | Driver.cpp | 361 error("unable to find library -l" + name, ErrorTag::LibNotFound, {name}); in addLibrary()
|