diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-23 23:44:09 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-23 23:44:09 +0000 |
commit | c6fad60801ff271d425ff8f635b66998008ffd7a (patch) | |
tree | 2e7fc0f2a2972b7a3c7af64db1ed2b22880beef6 /lib/CodeGen/CGDecl.cpp | |
parent | cc075e4092900ac9eec9dc92e35096eae1ee29c7 (diff) |
Whitespace and 80-col cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138413 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | lib/CodeGen/CGDecl.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/CGDecl.cpp b/lib/CodeGen/CGDecl.cpp index 18c504545b..6d1e9b03ab 100644 --- a/lib/CodeGen/CGDecl.cpp +++ b/lib/CodeGen/CGDecl.cpp @@ -877,8 +877,8 @@ static bool isCapturedBy(const VarDecl &var, const Expr *e) { if (const StmtExpr *SE = dyn_cast<StmtExpr>(e)) { const CompoundStmt *CS = SE->getSubStmt(); - for (CompoundStmt::const_body_iterator BI = CS->body_begin(), BE = CS->body_end() - ;BI != BE; ++BI) + for (CompoundStmt::const_body_iterator BI = CS->body_begin(), + BE = CS->body_end(); BI != BE; ++BI) if (Expr *E = dyn_cast<Expr>((*BI))) if (isCapturedBy(var, E)) return true; @@ -933,7 +933,6 @@ void CodeGenFunction::EmitAutoVarInit(const AutoVarEmission &emission) { if (isTrivialInitializer(Init)) return; - CharUnits alignment = emission.Alignment; // Check whether this is a byref variable that's potentially |