Add braces to avoid an ambiguous else, fixing a GCC warning.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104314 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/CGBlocks.cpp b/lib/CodeGen/CGBlocks.cpp
index d7e0d5f..f49b6ee 100644
--- a/lib/CodeGen/CGBlocks.cpp
+++ b/lib/CodeGen/CGBlocks.cpp
@@ -157,10 +157,11 @@
   }
 
   // Make sure to capture implicit 'self' references due to super calls.
-  else if (const ObjCMessageExpr *E = dyn_cast<ObjCMessageExpr>(S))
+  else if (const ObjCMessageExpr *E = dyn_cast<ObjCMessageExpr>(S)) {
     if (E->getReceiverKind() == ObjCMessageExpr::SuperClass || 
         E->getReceiverKind() == ObjCMessageExpr::SuperInstance)
       Info.NeedsObjCSelf = true;
+  }
 
   // Getter/setter uses may also cause implicit super references,
   // which we can check for with: