summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-01-21 23:06:53 -0800
committerGitHub <noreply@github.com>2018-01-21 23:06:53 -0800
commit821be4bc919e4bad06d6ffa18781ab8c34f4e95c (patch)
treefccceb022b9122cac8b40b43d1b2f55bc8660697 /src
parentb193c9eabbe56143f254bddab4a3c541f2c5ea08 (diff)
downloadcoreclr-821be4bc919e4bad06d6ffa18781ab8c34f4e95c.tar.gz
coreclr-821be4bc919e4bad06d6ffa18781ab8c34f4e95c.tar.bz2
coreclr-821be4bc919e4bad06d6ffa18781ab8c34f4e95c.zip
Fix Windows ARM release build break (#15958)
Diffstat (limited to 'src')
-rw-r--r--src/jit/morph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/morph.cpp b/src/jit/morph.cpp
index 17e4b2b89d..e07e037bf1 100644
--- a/src/jit/morph.cpp
+++ b/src/jit/morph.cpp
@@ -4967,7 +4967,7 @@ GenTreePtr Compiler::fgMorphMultiregStructArg(GenTreePtr arg, fgArgTabEntryPtr f
if (lcl != nullptr)
{
// Its fields will need to accessed by address.
- lvaSetVarDoNotEnregister(lcl->gtLclNum, DNER_IsStructArg);
+ lvaSetVarDoNotEnregister(lcl->gtLclNum DEBUG_ARG(DNER_IsStructArg));
}
return arg;