projects
/
platform
/
upstream
/
coreclr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
845da03
)
mark call->fgArgInfo with hasStackArgs for arm32 split args (#15615)
author
Sergey Andreenko
<seandree@microsoft.com>
Fri, 22 Dec 2017 17:58:21 +0000
(09:58 -0800)
committer
GitHub
<noreply@github.com>
Fri, 22 Dec 2017 17:58:21 +0000
(09:58 -0800)
src/jit/morph.cpp
patch
|
blob
|
history
diff --git
a/src/jit/morph.cpp
b/src/jit/morph.cpp
index bdf8ba7df0556eb5d8186ed8929feeee574f61ec..5e785f61fb8caaa416518833086360c905ef3611 100644
(file)
--- a/
src/jit/morph.cpp
+++ b/
src/jit/morph.cpp
@@
-1475,12
+1475,14
@@
void fgArgInfo::SplitArg(unsigned argNum, unsigned numRegs, unsigned numSlots)
assert(curArgTabEntry->isSplit == true);
assert(curArgTabEntry->numRegs == numRegs);
assert(curArgTabEntry->numSlots == numSlots);
+ assert(hasStackArgs == true);
}
else
{
curArgTabEntry->isSplit = true;
curArgTabEntry->numRegs = numRegs;
curArgTabEntry->numSlots = numSlots;
+ hasStackArgs = true;
}
nextSlotNum += numSlots;
}