mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-19 10:53:55 +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:
parent
fb9c0d7e31
commit
3ebe71db6b
@ -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;
|
||||
default:
|
||||
O << '\\';
|
||||
O << char('0' + (C >> 6));
|
||||
O << char('0' + (C >> 3));
|
||||
O << char('0' + (C >> 0));
|
||||
O << char('0' + ((C >> 6) & 7));
|
||||
O << char('0' + ((C >> 3) & 7));
|
||||
O << char('0' + ((C >> 0) & 7));
|
||||
break;
|
||||
}
|
||||
} else if (C == '\"') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user