From: Anton Korobeynikov Date: Tue, 6 Mar 2007 19:25:02 +0000 (+0000) Subject: Small eye-candy: use asciz directive everywhere, where possible. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fb269cf3e7893e1e5265db818e7ce78b6b2f75b5;p=oota-llvm.git Small eye-candy: use asciz directive everywhere, where possible. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34981 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 8db6a5b29be..4dce674575c 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -559,13 +559,20 @@ static void printStringChar(std::ostream &O, unsigned char C) { /// Special characters are emitted properly. /// \literal (Eg. '\t') \endliteral void AsmPrinter::EmitString(const std::string &String) const { - O << TAI->getAsciiDirective() - << "\""; + const char* AscizDirective = TAI->getAscizDirective(); + if (AscizDirective) + O << AscizDirective; + else + O << TAI->getAsciiDirective(); + O << "\""; for (unsigned i = 0, N = String.size(); i < N; ++i) { unsigned char C = String[i]; printStringChar(O, C); } - O << "\\0\""; + if (AscizDirective) + O << "\""; + else + O << "\\0\""; }