[RyuJIT/armel] Fix ifdef block in TreeNodeInfoInit
authorHanjoung Lee <hanjoung.lee@samsung.com>
Fri, 25 Aug 2017 06:49:38 +0000 (15:49 +0900)
committerHanjoung Lee <hanjoung.lee@samsung.com>
Fri, 25 Aug 2017 06:49:38 +0000 (15:49 +0900)
Commit migrated from https://github.com/dotnet/coreclr/commit/62a8d935e78109d5ea9e5fb4c8ae8a4126a72e10

src/coreclr/src/jit/lsraarm.cpp

index 105797a..4ee00b7 100644 (file)
@@ -712,12 +712,11 @@ void Lowering::TreeNodeInfoInit(GenTree* tree)
                 info->dstCount = 2;
             }
             else
-#else
+#endif
             {
                 assert(info->dstCount == 1);
             }
-#endif
-                break;
+            break;
 
         case GT_PUTARG_SPLIT:
             TreeNodeInfoInitPutArgSplit(tree->AsPutArgSplit());