From 73fb0e3f00cff127e996b36c493949fa7b2c38e8 Mon Sep 17 00:00:00 2001 From: Katelyn Gadd Date: Fri, 22 Aug 2025 16:28:29 -0700 Subject: [PATCH] Implement STELEM_U1 and STELEM_U2 --- src/coreclr/vm/interpexec.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/coreclr/vm/interpexec.cpp b/src/coreclr/vm/interpexec.cpp index 5c82f07e4ec820..d7f3f459a354df 100644 --- a/src/coreclr/vm/interpexec.cpp +++ b/src/coreclr/vm/interpexec.cpp @@ -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);