Format code.
authorPat Gavlin <pagavlin@microsoft.com>
Thu, 3 Nov 2016 17:35:05 +0000 (10:35 -0700)
committerPat Gavlin <pagavlin@microsoft.com>
Thu, 3 Nov 2016 17:35:05 +0000 (10:35 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/3b69d5b7b497c9ce0151d506fdfad81b06ba1d42

src/coreclr/src/jit/flowgraph.cpp

index c02bd50..d2442cc 100644 (file)
@@ -14163,9 +14163,9 @@ bool Compiler::fgOptimizeBranch(BasicBlock* bJump)
     //
     gtReverseCond(condTree);
 
-    // We need to update the following flags of the bJump block if they were set in the bbJumpDest block
-    bJump->bbFlags |= (bDest->bbFlags &
-                       (BBF_HAS_NEWOBJ | BBF_HAS_NEWARRAY | BBF_HAS_NULLCHECK | BBF_HAS_IDX_LEN | BBF_HAS_VTABREF));
+    // We need to update the following flags of the bJump block if they were set in the bDest block
+    bJump->bbFlags |=
+        (bDest->bbFlags & (BBF_HAS_NEWOBJ | BBF_HAS_NEWARRAY | BBF_HAS_NULLCHECK | BBF_HAS_IDX_LEN | BBF_HAS_VTABREF));
 
     bJump->bbJumpKind = BBJ_COND;
     bJump->bbJumpDest = bDest->bbNext;