mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
Corrections.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30021 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -942,7 +942,7 @@ void DIE::AddChild(DIE *Child) {
|
|||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
/// DWContext
|
/// DwarfWriter
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
@ -1103,9 +1103,9 @@ void DwarfWriter::EmitString(const std::string &String) const {
|
|||||||
case '\t': O << "\\t"; break;
|
case '\t': O << "\\t"; break;
|
||||||
default:
|
default:
|
||||||
O << '\\';
|
O << '\\';
|
||||||
O << char('0' + (C >> 6));
|
O << char('0' + ((C >> 6) & 7));
|
||||||
O << char('0' + (C >> 3));
|
O << char('0' + ((C >> 3) & 7));
|
||||||
O << char('0' + (C >> 0));
|
O << char('0' + ((C >> 0) & 7));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else if (C == '\"') {
|
} else if (C == '\"') {
|
||||||
|
Reference in New Issue
Block a user