From eeb4fe093dbd9a990c957fe1e4ab3b62689885e0 Mon Sep 17 00:00:00 2001 From: Archibald Elliott Date: Thu, 13 Apr 2023 13:40:18 +0100 Subject: [PATCH] [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. --- llvm/test/CodeGen/ARM/fp16-return-pr60510.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/ARM/fp16-return-pr60510.ll b/llvm/test/CodeGen/ARM/fp16-return-pr60510.ll index a1c89dc..a84cbce 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 { -- 2.7.4