summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-10-21 00:42:55 +0000
committerMike Stump <mrs@apple.com>2009-10-21 00:42:55 +0000
commit70197d544114c8ac593b3c1805233d3dcde84479 (patch)
tree76d2cf326807bed41689de34d4aeb3cc3dc579ab /clang/lib/CodeGen
parent550e0c2f0fd655d6946a2e2b6dbbbf2c473a513c (diff)
downloadbcm5719-llvm-70197d544114c8ac593b3c1805233d3dcde84479.tar.gz
bcm5719-llvm-70197d544114c8ac593b3c1805233d3dcde84479.zip
Fix 80-col violation.
llvm-svn: 84719
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r--clang/lib/CodeGen/CGDecl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGDecl.cpp b/clang/lib/CodeGen/CGDecl.cpp
index cc0696abaea..1728c67292b 100644
--- a/clang/lib/CodeGen/CGDecl.cpp
+++ b/clang/lib/CodeGen/CGDecl.cpp
@@ -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);
OpenPOWER on IntegriCloud