You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Normally, we are too conservative, adding a MINT_INITLOCALS opcode even if all locals are initialized by IL code, which should be the common case anyway. However, we are not initializing locals coming from inlined methods.
We should be able to detect in the future when an uninitialized local is being used, and only then add the initlocals, both in the inlined method and normal case.
Failed tests: JIT/Directed/zeroinit/**
The text was updated successfully, but these errors were encountered:
Normally, we are too conservative, adding a MINT_INITLOCALS opcode even if all locals are initialized by IL code, which should be the common case anyway. However, we are not initializing locals coming from inlined methods.
We should be able to detect in the future when an uninitialized local is being used, and only then add the initlocals, both in the inlined method and normal case.
Failed tests: JIT/Directed/zeroinit/**
The text was updated successfully, but these errors were encountered: