From: Carol Eidt Date: Sun, 3 Nov 2019 00:09:58 +0000 (-0700) Subject: Formatting X-Git-Tag: submit/tizen/20210909.063632~11030^2~65^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6b9dd72779244c2469883ce92641a5240826e064;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Formatting Commit migrated from https://github.com/dotnet/coreclr/commit/b1193133862c9db0b1683ecfcacf49a722a22728 --- diff --git a/src/coreclr/src/jit/importer.cpp b/src/coreclr/src/jit/importer.cpp index 98a60b8..441e0bd 100644 --- a/src/coreclr/src/jit/importer.cpp +++ b/src/coreclr/src/jit/importer.cpp @@ -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;