-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Crossgen2 fails with TableIndexOutOfRangeException #39493
Comments
Dotnet-GitSync-Bot
added
the
untriaged
New issue has not been triaged by the area owner
label
Jul 17, 2020
Thanks @MichalStrehovsky for taking a look. Will assign to @trylek so we can handle this case. |
trylek
added a commit
to trylek/runtime
that referenced
this issue
Jul 20, 2020
Fixes: dotnet#39493 Turns out the compilation failure here wasn't caused by Managed C++, it was due to a simple bug in the field RVA copy loop - reading compressed 16-bit field indices as signed, not unsigned, from the FieldRVA ECMA metadata table. Thanks Tomas
trylek
added a commit
that referenced
this issue
Jul 21, 2020
Fixes: #39493 Turns out the compilation failure here wasn't caused by Managed C++, it was due to a simple bug in the field RVA copy loop - reading compressed 16-bit field indices as signed, not unsigned, from the FieldRVA ECMA metadata table. Thanks Tomas
Jacksondr5
pushed a commit
to Jacksondr5/runtime
that referenced
this issue
Aug 10, 2020
Fixes: dotnet#39493 Turns out the compilation failure here wasn't caused by Managed C++, it was due to a simple bug in the field RVA copy loop - reading compressed 16-bit field indices as signed, not unsigned, from the FieldRVA ECMA metadata table. Thanks Tomas
ghost
locked as resolved and limited conversation to collaborators
Dec 8, 2020
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Try to compile the repro listed in #13339 using crossgen2. It fails with the following stack:
The text was updated successfully, but these errors were encountered: