[llvm] eeb4fe0 - [NFC][ARM] Fix Type in Test
Archibald Elliott via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 13 05:44:00 PDT 2023
Author: Archibald Elliott
Date: 2023-04-13T13:43:51+01:00
New Revision: eeb4fe093dbd9a990c957fe1e4ab3b62689885e0
URL: https://github.com/llvm/llvm-project/commit/eeb4fe093dbd9a990c957fe1e4ab3b62689885e0
DIFF: https://github.com/llvm/llvm-project/commit/eeb4fe093dbd9a990c957fe1e4ab3b62689885e0.diff
LOG: [NFC][ARM] Fix Type in Test
I landed this test with a typo, the callsites all show `fp16_inner`
returning `half`, so the declaration should too.
Added:
Modified:
llvm/test/CodeGen/ARM/fp16-return-pr60510.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/ARM/fp16-return-pr60510.ll b/llvm/test/CodeGen/ARM/fp16-return-pr60510.ll
index a1c89dcdda17..a84cbce2d696 100644
--- a/llvm/test/CodeGen/ARM/fp16-return-pr60510.ll
+++ b/llvm/test/CodeGen/ARM/fp16-return-pr60510.ll
@@ -23,7 +23,7 @@ declare dso_local float @other(float) nounwind
declare dso_local void @fp16_sink(half) nounwind
declare dso_local void @bf16_sink(bfloat) nounwind
-declare dso_local bfloat @fp16_inner() nounwind
+declare dso_local half @fp16_inner() nounwind
declare dso_local bfloat @bf_inner() nounwind
define half @fp16_out_call_oneuse(float %arg) nounwind {
More information about the llvm-commits
mailing list