From: Vikram S. Adve Date: Tue, 29 Jul 2003 19:57:34 +0000 (+0000) Subject: Bug fix: don't unnecessarily pretty-print control-characters, some of X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=00477cf26deaf440e8d73e8594ab87051b5b80bb;p=oota-llvm.git Bug fix: don't unnecessarily pretty-print control-characters, some of which were wrong (particularly, '\a' for '\007'). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7393 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SparcV9/SparcV9AsmPrinter.cpp b/lib/Target/SparcV9/SparcV9AsmPrinter.cpp index 1094a484a11..b541e985be2 100644 --- a/lib/Target/SparcV9/SparcV9AsmPrinter.cpp +++ b/lib/Target/SparcV9/SparcV9AsmPrinter.cpp @@ -594,21 +594,10 @@ static string getAsCString(const ConstantArray *CVA) { } else if (isprint(C)) { Result += C; } else { - switch(C) { - case '\a': Result += "\\a"; break; - case '\b': Result += "\\b"; break; - case '\f': Result += "\\f"; break; - case '\n': Result += "\\n"; break; - case '\r': Result += "\\r"; break; - case '\t': Result += "\\t"; break; - case '\v': Result += "\\v"; break; - default: - Result += '\\'; - Result += toOctal(C >> 6); - Result += toOctal(C >> 3); - Result += toOctal(C >> 0); - break; - } + Result += '\\'; // print all other chars as octal value + Result += toOctal(C >> 6); + Result += toOctal(C >> 3); + Result += toOctal(C >> 0); } } Result += "\"";