-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Promote float varargs to double #584
Conversation
Please add a note to CHANGES.md |
Done. Also extended the test a bit to make it clearer. |
This test fails on the ARM target (raspberry Pi)
|
Why didn't this fail when the PR was tested? Is a different testsuite executed for PRs and after a merge? Anyway, this doesn't seem to be a new bug my patch introduced but a bug that wasn't known (tested) before: passing float and double through varargs. I added a test each:
|
It’s not a bug in your code, it’s an existing bug exposed by the tests you added (that’s a good thing). We have platform-specific tests run on merge into master (and PRs on the main project), these run on linux, mac, and raspberry Pi. Other platforms get run ad hoc before release. I’ve put up a PR to address the ARM issue - it actually uses a different ABI when using varargs.
|
Motivation: There was a new maven release Modifications: Upgrade to 3.9.4 Result: Use latest maven release via maven wrapper
As discussed on #463