diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-02-25 21:19:47 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-02-25 21:19:47 +0000 |
commit | 3be02b851918489d8fb8154678d476c806ade67a (patch) | |
tree | 58dcbc116ea85040f58bde1dd152282da17ef8f0 | |
parent | 2693d2eb4cdfcec0a3cdca600a57f469db667edd (diff) | |
download | external_llvm-3be02b851918489d8fb8154678d476c806ade67a.zip external_llvm-3be02b851918489d8fb8154678d476c806ade67a.tar.gz external_llvm-3be02b851918489d8fb8154678d476c806ade67a.tar.bz2 |
Make comment more meaningful.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97169 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp index 2e10a4a..7920019 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp @@ -746,7 +746,8 @@ void DwarfException::EmitExceptionTable() { unsigned SizeAlign = (4 - TotalSize) & 3; if (HaveTTData) - // Pad here for alignment. + // Account for any extra padded that will be added to the call site table + // length. EmitULEB128(TTypeBaseOffset + SizeAlign, "@TType base offset"); // SjLj Exception handling |