mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Use raw_ostream::write_escaped instead of EscapeString.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84356 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -30,9 +30,8 @@ namespace {
|
||||
|
||||
virtual bool runOnFunction(Function &F) {
|
||||
HelloCounter++;
|
||||
std::string fname = F.getName();
|
||||
EscapeString(fname);
|
||||
errs() << "Hello: " << fname << "\n";
|
||||
errs() << "Hello: ";
|
||||
errs().write_escaped(F.getName()) << '\n';
|
||||
return false;
|
||||
}
|
||||
};
|
||||
@ -49,9 +48,8 @@ namespace {
|
||||
|
||||
virtual bool runOnFunction(Function &F) {
|
||||
HelloCounter++;
|
||||
std::string fname = F.getName();
|
||||
EscapeString(fname);
|
||||
errs() << "Hello: " << fname << "\n";
|
||||
errs() << "Hello: ";
|
||||
errs().write_escaped(F.getName()) << '\n';
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user