mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 16:21:36 +00:00
[dsymutil] Make the warn and error helpers globally available. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@246010 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fe893839f9
commit
93639d33f7
@ -44,17 +44,6 @@ namespace dsymutil {
|
||||
|
||||
namespace {
|
||||
|
||||
void warn(const Twine &Warning, const Twine &Context) {
|
||||
errs() << Twine("while processing ") + Context + ":\n";
|
||||
errs() << Twine("warning: ") + Warning + "\n";
|
||||
}
|
||||
|
||||
bool error(const Twine &Error, const Twine &Context) {
|
||||
errs() << Twine("while processing ") + Context + ":\n";
|
||||
errs() << Twine("error: ") + Error + "\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
template <typename KeyT, typename ValT>
|
||||
using HalfOpenIntervalMap =
|
||||
IntervalMap<KeyT, ValT, IntervalMapImpl::NodeSizer<KeyT, ValT>::LeafSize,
|
||||
@ -3090,6 +3079,17 @@ StringRef NonRelocatableStringpool::internString(StringRef S) {
|
||||
return InsertResult.first->getKey();
|
||||
}
|
||||
|
||||
void warn(const Twine &Warning, const Twine &Context) {
|
||||
errs() << Twine("while processing ") + Context + ":\n";
|
||||
errs() << Twine("warning: ") + Warning + "\n";
|
||||
}
|
||||
|
||||
bool error(const Twine &Error, const Twine &Context) {
|
||||
errs() << Twine("while processing ") + Context + ":\n";
|
||||
errs() << Twine("error: ") + Error + "\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
bool linkDwarf(StringRef OutputFilename, const DebugMap &DM,
|
||||
const LinkOptions &Options) {
|
||||
DwarfLinker Linker(OutputFilename, Options);
|
||||
|
@ -48,6 +48,9 @@ bool linkDwarf(StringRef OutputFilename, const DebugMap &DM,
|
||||
/// \brief Exit the dsymutil process, cleaning up every temporary
|
||||
/// files that we created.
|
||||
LLVM_ATTRIBUTE_NORETURN void exitDsymutil(int ExitStatus);
|
||||
|
||||
void warn(const Twine &Warning, const Twine &Context);
|
||||
bool error(const Twine &Error, const Twine &Context);
|
||||
}
|
||||
}
|
||||
#endif // LLVM_TOOLS_DSYMUTIL_DSYMUTIL_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user