We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88fc90f commit 696d338Copy full SHA for 696d338
src/coreclr/interpreter/stackmap.cpp
@@ -35,6 +35,8 @@ InterpreterStackMap* GetInterpreterStackMap(ICorJitInfo* jitInfo, CORINFO_CLASS_
35
result = new InterpreterStackMap(jitInfo, classHandle);
36
dn_simdhash_add_result addResult = dn_simdhash_ptr_ptr_try_add(t_sharedStackMapLookup, classHandle, result);
37
assert(addResult == DN_SIMDHASH_ADD_INSERTED);
38
+ if (addResult == DN_SIMDHASH_OUT_OF_MEMORY)
39
+ NOMEM();
40
}
41
return result;
42
0 commit comments