Format code.
authorPat Gavlin <pagavlin@microsoft.com>
Fri, 19 May 2017 18:24:13 +0000 (11:24 -0700)
committerPat Gavlin <pagavlin@microsoft.com>
Fri, 19 May 2017 18:25:07 +0000 (11:25 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/9be51dbffd1569c0227f71f8ddd80d0d1cf6700f

src/coreclr/src/jit/gentree.cpp

index 58eac8b..25e9e10 100644 (file)
@@ -5249,7 +5249,8 @@ unsigned Compiler::gtSetEvalOrder(GenTree* tree)
             // so if possible it was set above.
             tryToSwap = false;
         }
-        else if ((oper == GT_INTRINSIC) && Compiler::IsIntrinsicImplementedByUserCall(tree->AsIntrinsic()->gtIntrinsicId))
+        else if ((oper == GT_INTRINSIC) &&
+                 Compiler::IsIntrinsicImplementedByUserCall(tree->AsIntrinsic()->gtIntrinsicId))
         {
             // We do not swap operand execution order for intrinsics that are implemented by user calls
             // because of trickiness around ensuring the execution order does not change during rationalization.