[RyuJIT/ARM32] Remove unnecessary isHfaRegArg check routine
authorJiyoung Yun <jy910.yun@samsung.com>
Thu, 20 Jul 2017 09:01:09 +0000 (18:01 +0900)
committerJiyoung Yun <jy910.yun@samsung.com>
Thu, 20 Jul 2017 09:01:09 +0000 (18:01 +0900)
src/jit/morph.cpp

index e17d491..80eb99d 100644 (file)
@@ -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)