mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-04 01:51:31 +00:00
unbreak the CBE on treeadd an many others.
llvm-svn: 55112
This commit is contained in:
parent
d9012655db
commit
a87eb40ef4
@ -773,9 +773,9 @@ void CWriter::printConstantArray(ConstantArray *CPA, bool Static) {
|
||||
if (isprint(C) && (!LastWasHex || !isxdigit(C))) {
|
||||
LastWasHex = false;
|
||||
if (C == '"' || C == '\\')
|
||||
Out << "\\" << C;
|
||||
Out << "\\" << (char)C;
|
||||
else
|
||||
Out << C;
|
||||
Out << (char)C;
|
||||
} else {
|
||||
LastWasHex = false;
|
||||
switch (C) {
|
||||
|
Loading…
Reference in New Issue
Block a user