[clang] [Clang] [ARM] Ensure FPU Features are collected when using the Clang Assembler (PR #134366)
David Spickett via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 4 05:27:39 PDT 2025
================
@@ -38,6 +38,9 @@ Potentially Breaking Changes
- Fix missing diagnostics for uses of declarations when performing typename access,
such as when performing member access on a '[[deprecated]]' type alias.
(#GH58547)
+- For ARM targets, when using cc1as, the features included in the selected CPU or
+ Arch's FPU are now loaded and utilized. If you wish not to use a specific feature,
+ this will need appending to the command line used.
----------------
DavidSpickett wrote:
"Arch's" -> "Architecture's"
> this will need appending to the command line used.
"this" seems to refer to "specific feature" but what you'd want to append is the option to disable that feature. Perhaps instead:
"If you wish not to use a specific feature, an option to disable it will need appending to the command line used."
And we assume folks know, or can find out, that "+no..." is probably what they want.
https://github.com/llvm/llvm-project/pull/134366
More information about the cfe-commits
mailing list