mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 02:58:10 +00:00
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
This commit is contained in:
parent
c37177eb72
commit
fb269cf3e7
@ -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\"";
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user