NFC small format
authorPiotr Padlewski <piotr.padlewski@gmail.com>
Sat, 29 Oct 2016 15:28:25 +0000 (15:28 +0000)
committerPiotr Padlewski <piotr.padlewski@gmail.com>
Sat, 29 Oct 2016 15:28:25 +0000 (15:28 +0000)
llvm-svn: 285496

clang/lib/Analysis/UninitializedValues.cpp

index f2f791957aa320cafa03f318b95e8dbd4db72932..d5289fb9d4271f2b939987bbfc41712b00016a33 100644 (file)
@@ -348,7 +348,8 @@ public:
 }
 
 static const DeclRefExpr *getSelfInitExpr(VarDecl *VD) {
-  if (VD->getType()->isRecordType()) return nullptr;
+  if (VD->getType()->isRecordType())
+    return nullptr;
   if (Expr *Init = VD->getInit()) {
     const DeclRefExpr *DRE
       = dyn_cast<DeclRefExpr>(stripCasts(VD->getASTContext(), Init));