Formatting
authorCarol Eidt <carol.eidt@microsoft.com>
Sun, 3 Nov 2019 00:09:58 +0000 (17:09 -0700)
committerCarol Eidt <carol.eidt@microsoft.com>
Sun, 3 Nov 2019 00:09:58 +0000 (17:09 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/b1193133862c9db0b1683ecfcacf49a722a22728

src/coreclr/src/jit/importer.cpp

index 98a60b8..441e0bd 100644 (file)
@@ -1393,9 +1393,10 @@ GenTree* Compiler::impAssignStructPtr(GenTree*             destAddr,
             // If one or both types are TYP_STRUCT (one may not yet be normalized), they are compatible
             // iff their handles are the same.
             // Otherwise, they are compatible if their types are the same.
-            bool typesAreCompatible = ((destType == TYP_STRUCT) || (asgType == TYP_STRUCT))
-                                          ? ((gtGetStructHandleIfPresent(destNode) == structHnd) && varTypeIsStruct(asgType))
-                                          : (destType == asgType);
+            bool typesAreCompatible =
+                ((destType == TYP_STRUCT) || (asgType == TYP_STRUCT))
+                    ? ((gtGetStructHandleIfPresent(destNode) == structHnd) && varTypeIsStruct(asgType))
+                    : (destType == asgType);
             if (typesAreCompatible)
             {
                 dest = destNode;