summaryrefslogtreecommitdiff
path: root/src/jit/codegenarmarch.cpp
diff options
context:
space:
mode:
authormikedn <onemihaid@hotmail.com>2017-12-20 23:31:53 +0200
committerSergey Andreenko <seandree@microsoft.com>2017-12-20 13:31:53 -0800
commit35608254eca65e1e3ddfec6b534d97715bd9dfd6 (patch)
treeb5a8689134a896e64ee1c8faa32be976aa5fca68 /src/jit/codegenarmarch.cpp
parent0500671ff7a6a9248771c25f9f9780858af6f6e4 (diff)
downloadcoreclr-35608254eca65e1e3ddfec6b534d97715bd9dfd6.tar.gz
coreclr-35608254eca65e1e3ddfec6b534d97715bd9dfd6.tar.bz2
coreclr-35608254eca65e1e3ddfec6b534d97715bd9dfd6.zip
Remove unused TYP_ARRAY/PTR/FUNC (#15529)
Diffstat (limited to 'src/jit/codegenarmarch.cpp')
-rw-r--r--src/jit/codegenarmarch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/codegenarmarch.cpp b/src/jit/codegenarmarch.cpp
index 74cbd01b01..deab3b67b9 100644
--- a/src/jit/codegenarmarch.cpp
+++ b/src/jit/codegenarmarch.cpp
@@ -2341,7 +2341,7 @@ void CodeGen::genCallInstruction(GenTreeCall* call)
{
assert(!varTypeIsStruct(call));
- if (call->gtType == TYP_REF || call->gtType == TYP_ARRAY)
+ if (call->gtType == TYP_REF)
{
retSize = EA_GCREF;
}