summaryrefslogtreecommitdiff
path: root/src/jit/lower.cpp
diff options
context:
space:
mode:
authorSteve MacLean <sdmaclea.qdt@qualcommdatacenter.com>2017-11-06 16:59:42 -0500
committerSteve MacLean <sdmaclea.qdt@qualcommdatacenter.com>2017-11-08 11:38:56 -0500
commitfd80667cc42b09aa04311b9f19d6b261f0554ef5 (patch)
treeee5b2ada4bc32343fdbf8046c2476bb1666e2165 /src/jit/lower.cpp
parent661ee8f407deec5a36011fdcce8f68cf68266823 (diff)
downloadcoreclr-fd80667cc42b09aa04311b9f19d6b261f0554ef5.tar.gz
coreclr-fd80667cc42b09aa04311b9f19d6b261f0554ef5.tar.bz2
coreclr-fd80667cc42b09aa04311b9f19d6b261f0554ef5.zip
[Arm64] SIMD genPutArgStk
Diffstat (limited to 'src/jit/lower.cpp')
-rw-r--r--src/jit/lower.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/lower.cpp b/src/jit/lower.cpp
index ce99e4d5b5..b8f0403a25 100644
--- a/src/jit/lower.cpp
+++ b/src/jit/lower.cpp
@@ -836,7 +836,7 @@ GenTreePtr Lowering::NewPutArg(GenTreeCall* call, GenTreePtr arg, fgArgTabEntryP
#ifdef _TARGET_ARMARCH_
// Mark contained when we pass struct
// GT_FIELD_LIST is always marked conatained when it is generated
- if (varTypeIsStruct(type))
+ if (type == TYP_STRUCT)
{
arg->SetContained();
if ((arg->OperGet() == GT_OBJ) && (arg->AsObj()->Addr()->OperGet() == GT_LCL_VAR_ADDR))