-
Notifications
You must be signed in to change notification settings - Fork 839
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
Fixes for PowerPC #7931
Fixes for PowerPC #7931
Conversation
Can one of the admins verify this patch? |
@dgarske Since you have changed that code in @JacobBarthelmeh (Tagging you in relation to the earlier commit.) |
Hi @barracuda156, thanks for your PR's. In order to accept a third party contribution we need a signed agreement. Please email support at wolfssl dot com to get that process started. |
@dgarske Done |
Contributor agreement has been approved. We're good to move forward on this. |
Description
There are trivial fixes which do not introduce any new code or functionally modify existing one.
What this does is:
P. S. While it is possible to simply add register prefices via a new macro (which will expand to nothing on Linux/BSD) instead of a separate implementation, I think this way is preferable, since it will prevent Darwin ABI from being accidentally broken when someone updates this later on, adding VSX instructions, for example, or crypto of later ISA. It also matches existing code style, which, for example, keeps ppc32 and ppc64 in separate chunks, not mixing them.