[llvm-commits] [llvm] r97200 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp

Bill Wendling isanbard at gmail.com
Thu Feb 25 17:12:52 PST 2010


Author: void
Date: Thu Feb 25 19:12:52 2010
New Revision: 97200

URL: http://llvm.org/viewvc/llvm-project?rev=97200&view=rev
Log:
Fix comments.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp?rev=97200&r1=97199&r2=97200&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfException.cpp Thu Feb 25 19:12:52 2010
@@ -765,9 +765,9 @@
     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);





More information about the llvm-commits mailing list