-
Notifications
You must be signed in to change notification settings - Fork 520
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
[Runtime] Move some of the changes back to int. #7529
Conversation
Some of the fixes done for the warnings have breaking changes. Move back to int and ensure that we do not have any compilation errors (we are using -Werror). Fixes: xamarin#7509
goto exception_handling; | ||
} | ||
*(NSObject **) arg = obj; | ||
} else { | ||
exception_gchandle = xamarin_get_exception_for_parameter (8030, 0, "Unable to marshal the out/ref parameter", sel, method, p, i, false); | ||
exception_gchandle = xamarin_get_exception_for_parameter (8030, 0, "Unable to marshal the out/ref parameter", sel, method, p, (int) i, false); |
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.
would not this be simpler (less changes) if int i
was used ?
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.
Surprisingly, no.
Build failure Test results1 tests failed, 87 tests passed.Failed tests
|
https://github.com/xamarin/maccore/issues/2072 is still happening, so this is not complete. My first guess would be that it's the changes in trampolines-arm64.m that is causing https://github.com/xamarin/maccore/issues/2072. |
Build failure Test results1 tests failed, 87 tests passed.Failed tests
|
@rolfbjarne these results do look more promising. |
@mandel-macaque so that didn't fix https://github.com/xamarin/maccore/issues/2072 😒 |
Build failure Test results3 tests failed, 85 tests passed.Failed tests
|
…t to step on the canary." This reverts commit a40c128.
Build failure Test results1 tests failed, 87 tests passed.Failed tests
|
@monojenkins backport to d16-5 |
@spouliot backporting to d16-5 failed, the patch results in conflicts:
Please backport manually! |
Some of the fixes done for the warnings have breaking changes. Move back to int and ensure that we do not have any compilation errors (we are using -Werror). Fixes: xamarin#7509
Some of the fixes done for the warnings have breaking changes. Move back
to int and ensure that we do not have any compilation errors (we are
using -Werror).
Fixes: #7509