mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 07:34:06 +00:00
Remove obviously redundant call.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67023 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
420dd37326
commit
34a408639f
@ -66,7 +66,7 @@ static void PrintEscapedString(const char *Str, unsigned Length,
|
|||||||
raw_ostream &Out) {
|
raw_ostream &Out) {
|
||||||
for (unsigned i = 0; i != Length; ++i) {
|
for (unsigned i = 0; i != Length; ++i) {
|
||||||
unsigned char C = Str[i];
|
unsigned char C = Str[i];
|
||||||
if (isprint(C) && C != '\\' && C != '"' && isprint(C))
|
if (isprint(C) && C != '\\' && C != '"')
|
||||||
Out << C;
|
Out << C;
|
||||||
else
|
else
|
||||||
Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
|
Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user