-
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
JIT: SVE Cleanup - Remove unsafe
from APIs that do not use pointers.
#104845
Comments
Tagging subscribers to this area: @dotnet/area-system-runtime-intrinsics |
I recommend doing this after making the files alphabetical in #104834 |
priority:2 for RC1 snap : User visible API |
This is more rather priority 3, or could even be pushed out to .NET 10. Marking an API as In many cases we've just marked the entire class as |
Pushing out to .NET 10 because we have many issues for RC1 snap. |
* Remove redundant unsafe from APIs Fixes: #104845 * Restore incorrectly commented API
* Remove redundant unsafe from APIs Fixes: dotnet#104845 * Restore incorrectly commented API
* Remove redundant unsafe from APIs Fixes: dotnet#104845 * Restore incorrectly commented API
* Remove redundant unsafe from APIs Fixes: dotnet#104845 * Restore incorrectly commented API
Because we have been copying and pasting from the generated code for SVE, the generation always marked the APIs as
unsafe
. We need to removeunsafe
from them if the API does not use any pointers.Relevant files:
The text was updated successfully, but these errors were encountered: