-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Events for IL methods without IL headers #90826
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Events for IL methods without IL headers #90826
Conversation
Dynamically generated methods like UnsafeAccessor functions are marked as IL, but don't contain an IL header. The lack of header is an indication the IL must be generated at runtime.
|
This also reverts #90801. |
|
There are also two places in the dac that should probably be updated. |
Co-authored-by: Tlakaelel Axayakatl Ceja <[email protected]>
jkotas
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you!
|
Failure is #90605 |
|
/backport to release/8.0 |
|
Started backporting to release/8.0: https://github.com/dotnet/runtime/actions/runs/5912095063 |
Dynamically generated methods like
UnsafeAccessorAttributefunctions are marked as IL, but don't contain an IL header.
The lack of header is an indication the IL must be generated
at runtime.
Fixes #90485
Fixes #90580
Fixes #90593