Corrections.

llvm-svn: 30021
This commit is contained in:
Jim Laskey 2006-09-01 12:55:05 +00:00
parent 4b8b6ae924
commit 5352d0cc4d
1 changed files with 4 additions and 4 deletions

View File

@ -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 == '\"') {