[cfe-commits] r84719 - /cfe/trunk/lib/CodeGen/CGDecl.cpp

Mike Stump mrs at apple.com
Tue Oct 20 17:42:55 PDT 2009


Author: mrs
Date: Tue Oct 20 19:42:55 2009
New Revision: 84719

URL: http://llvm.org/viewvc/llvm-project?rev=84719&view=rev
Log:
Fix 80-col violation.

Modified:
    cfe/trunk/lib/CodeGen/CGDecl.cpp

Modified: cfe/trunk/lib/CodeGen/CGDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDecl.cpp?rev=84719&r1=84718&r2=84719&view=diff

==============================================================================
--- cfe/trunk/lib/CodeGen/CGDecl.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDecl.cpp Tue Oct 20 19:42:55 2009
@@ -276,8 +276,8 @@
     unsigned NumPaddingBytes = AlignedOffsetInBytes - CurrentOffsetInBytes;
     if (NumPaddingBytes > 0) {
       const llvm::Type *Ty = llvm::Type::getInt8Ty(VMContext);
-      // FIXME: We need a sema error for alignment larger than the minimum of the
-      // maximal stack alignmint and the alignment of malloc on the system.
+      // FIXME: We need a sema error for alignment larger than the minimum of
+      // the maximal stack alignmint and the alignment of malloc on the system.
       if (NumPaddingBytes > 1)
         Ty = llvm::ArrayType::get(Ty, NumPaddingBytes);
     





More information about the cfe-commits mailing list