From: Jan Kotas Date: Tue, 2 Feb 2016 19:51:10 +0000 (-0800) Subject: Fix build break in Linux arm release build X-Git-Tag: accepted/tizen/base/20180629.140029~5681^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd428d47fc504c40397a621367e791c9371743c8;p=platform%2Fupstream%2Fcoreclr.git Fix build break in Linux arm release build --- diff --git a/src/jit/codegenlegacy.cpp b/src/jit/codegenlegacy.cpp index a2711e2..f775613 100644 --- a/src/jit/codegenlegacy.cpp +++ b/src/jit/codegenlegacy.cpp @@ -5117,11 +5117,11 @@ void CodeGen::genCodeForTreeLeaf(GenTreePtr tree, reg = REG_STK; break; -#ifdef DEBUG default: +#ifdef DEBUG compiler->gtDispTree(tree); - noway_assert(!"unexpected leaf"); #endif + noway_assert(!"unexpected leaf"); } noway_assert(reg != DUMMY_INIT(REG_CORRUPT)); @@ -10430,11 +10430,11 @@ LockBinOpCommon: NYI("Handle GT_LDOBJ, or eliminate them earlier."); unreached(); -#ifdef DEBUG default: +#ifdef DEBUG compiler->gtDispTree(tree); - noway_assert(!"unexpected unary/binary operator"); #endif + noway_assert(!"unexpected unary/binary operator"); } // end switch (oper) unreached();