Fix comments.

llvm-svn: 97200
This commit is contained in:
Bill Wendling 2010-02-26 01:12:52 +00:00
parent 36c6320d78
commit 098c91e95b
1 changed files with 3 additions and 3 deletions

View File

@ -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);