diff options
author | Mike Stump <mrs@apple.com> | 2009-07-30 22:28:39 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-30 22:28:39 +0000 |
commit | b3589f44c5d295cd41de2c83f3475116835eeebd (patch) | |
tree | 9c26182dde2d8018183b31cfcf3d86e8a532f9b9 /lib/CodeGen/CGBlocks.cpp | |
parent | 636463e4c43be15e2f0fd0b8a08667f3066d8af7 (diff) |
Canonicalize else spacing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGBlocks.cpp')
-rw-r--r-- | lib/CodeGen/CGBlocks.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/CGBlocks.cpp b/lib/CodeGen/CGBlocks.cpp index c7d900cf48..2eafef949a 100644 --- a/lib/CodeGen/CGBlocks.cpp +++ b/lib/CodeGen/CGBlocks.cpp @@ -609,8 +609,7 @@ CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr, dyn_cast<FunctionProtoType>(BlockFunctionType)) { ResultType = FTy->getResultType(); IsVariadic = FTy->isVariadic(); - } - else { + } else { // K&R style block. ResultType = BlockFunctionType->getResultType(); IsVariadic = false; |