From 8726ac5da3d1413e0cf5e6e4442f139c902a90d4 Mon Sep 17 00:00:00 2001 From: Jiyoung Yun Date: Thu, 20 Jul 2017 18:01:09 +0900 Subject: [PATCH] [RyuJIT/ARM32] Remove unnecessary isHfaRegArg check routine --- src/jit/morph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.7.4