]> granicus.if.org Git - clang/commitdiff
Fix 80-col violation.
authorMike Stump <mrs@apple.com>
Wed, 21 Oct 2009 00:42:55 +0000 (00:42 +0000)
committerMike Stump <mrs@apple.com>
Wed, 21 Oct 2009 00:42:55 +0000 (00:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84719 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGDecl.cpp

index cc0696abaeaab0dccecbad789b18899b0e04c36f..1728c67292b7758d423c611702576af287bb1fb5 100644 (file)
@@ -276,8 +276,8 @@ const llvm::Type *CodeGenFunction::BuildByRefType(const ValueDecl *D) {
     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);