[llvm] [ARM] Emit an error when the hard-float ABI is enabled but can't be used. (PR #111334)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 23 00:41:09 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 8ff4d27fe6b32ea1a127758c121cc2a980439833 d5cae4e1ba72492fee65422a1caae43664a2d431 --extensions cpp -- llvm/lib/Target/ARM/ARMISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp
index cc487119b6..c54db12379 100644
--- a/llvm/lib/Target/ARM/ARMISelLowering.cpp
+++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp
@@ -792,7 +792,7 @@ ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM,
if (!Subtarget->hasFP64())
setAllExpand(MVT::f64);
} else if (TM.Options.FloatABIType == FloatABI::Hard)
- errs() << "The hard-float ABI can't be used for a target that "
+ errs() << "The hard-float ABI can't be used for a target that "
"doesn't support floating-point (ignoring float-abi)\n";
if (Subtarget->hasFullFP16()) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/111334
More information about the llvm-commits
mailing list