diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-02-26 01:12:52 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-02-26 01:12:52 +0000 |
commit | 098c91e95bb8b6f9b30c3f401800520d3b09d399 (patch) | |
tree | eb6d9dfcbc46fa0483b90f3b2f45af5d0384049d /llvm/lib/CodeGen | |
parent | 36c6320d7843dc83bddd98ed81fae4e26c89e191 (diff) | |
download | bcm5719-llvm-098c91e95bb8b6f9b30c3f401800520d3b09d399.tar.gz bcm5719-llvm-098c91e95bb8b6f9b30c3f401800520d3b09d399.zip |
Fix comments.
llvm-svn: 97200
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index 99d235cf31b..24653f5b521 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -765,9 +765,9 @@ void DwarfException::EmitExceptionTable() { if (!TTypeBaseOverflow) { EmitULEB128(TTypeBaseOffset + SizeAlign, "@TType base offset"); } else if (SizeAlign != 0) { - // If the new "offset + alignment" size doesn't require extra the same - // extra padding that the original one did, then we need to insert that - // padding ourselves. + // If the new "offset + alignment" size doesn't require the same extra + // padding that the original one did, then we need to insert that padding + // ourselves. EmitULEB128(TTypeBaseOffset + SizeAlign, "@TType base offset", MCAsmInfo::getULEB128Size(TTypeBaseOffset + SizeAlign) != OffsetSize ? TTypeBaseOverflow : 0); |