Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/coreclr/vm/interpexec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2425,6 +2425,16 @@ do { \
STELEM(int64_t, int64_t);
break;
}
case INTOP_STELEM_U1:
{
STELEM(int32_t, uint8_t);
break;
}
case INTOP_STELEM_U2:
{
STELEM(int32_t, uint16_t);
break;
}
case INTOP_STELEM_R4:
{
STELEM(float, float);
Expand Down
Loading