aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DwarfException.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-02-26 01:12:52 +0000
committerBill Wendling <isanbard@gmail.com>2010-02-26 01:12:52 +0000
commit0b1d2f30124285cc853a12deb0f45a72add26d04 (patch)
treed7d718a8bd9b9af7f0b0d2832e88181df31afc69 /lib/CodeGen/AsmPrinter/DwarfException.cpp
parent0c0f4b6e011e3c3ffdb692065e0b7b20164a4c0a (diff)
Fix comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97200 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfException.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp
index 99d235cf31..24653f5b52 100644
--- a/lib/CodeGen/AsmPrinter/DwarfException.cpp
+++ b/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);