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 | 60aa4dfb53aa55c7e0759d892c789eb11b9d7e1c (patch) | |
tree | e0c0a429008d093e31edc4b766ffc88349d53386 /llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | |
parent | 5c9d3330390e84b5272d48bc1f1b0aed66f27ca2 (diff) | |
download | bcm5719-llvm-60aa4dfb53aa55c7e0759d892c789eb11b9d7e1c.tar.gz bcm5719-llvm-60aa4dfb53aa55c7e0759d892c789eb11b9d7e1c.zip |
Make comment more meaningful.
llvm-svn: 97169
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp index 2e10a4a637b..79200198c5a 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp +++ b/llvm/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 |