From: Jiyoung Yun Date: Thu, 20 Jul 2017 09:01:09 +0000 (+0900) Subject: [RyuJIT/ARM32] Remove unnecessary isHfaRegArg check routine X-Git-Tag: accepted/tizen/base/20180629.140029~1083^2~104^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8726ac5da3d1413e0cf5e6e4442f139c902a90d4;p=platform%2Fupstream%2Fcoreclr.git [RyuJIT/ARM32] Remove unnecessary isHfaRegArg check routine --- diff --git a/src/jit/morph.cpp b/src/jit/morph.cpp index e17d491..80eb99d 100644 --- a/src/jit/morph.cpp +++ b/src/jit/morph.cpp @@ -4767,7 +4767,7 @@ GenTreePtr Compiler::fgMorphMultiregStructArg(GenTreePtr arg, fgArgTabEntryPtr f #ifdef _TARGET_ARM_ if ((fgEntryPtr->isSplit && fgEntryPtr->numSlots + fgEntryPtr->numRegs > 4) || - (!fgEntryPtr->isSplit && !fgEntryPtr->isHfaRegArg && fgEntryPtr->regNum == REG_STK)) + (!fgEntryPtr->isSplit && fgEntryPtr->regNum == REG_STK)) { // If already OBJ it is set properly already. if (arg->OperGet() == GT_OBJ)