We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
Section 5.4.3 of acle-2022Q4-3.pdf appears to be confused. The document states
The common subset of the A, R and M profiles is indicated by __ARM_ARCH == 7 && !defined (__ARM_ARCH_PROFILE)
Firstly, I believe the test for the common subset would be just
__ARM_ARCH == 7
and, secondly, all v7 cores should have a profile defined, so the test as shown would not pass for any compilation target.
The text was updated successfully, but these errors were encountered:
Hi, thanks for your issue report.
If possible, we encourage you to contribute with a Pull Request that addresses this issue. We will be happy to review it.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Section 5.4.3 of acle-2022Q4-3.pdf appears to be confused. The document states
Firstly, I believe the test for the common subset would be just
__ARM_ARCH == 7
and, secondly, all v7 cores should have a profile defined, so the test as shown would not pass for any compilation target.
The text was updated successfully, but these errors were encountered: