Author: Albion Date: 2021-06-23T16:26:10-04:00 New Revision: 418eb1c704e02fd5a3ab6741c8da0729b7279019
URL: https://github.com/llvm/llvm-project/commit/418eb1c704e02fd5a3ab6741c8da0729b7279019 DIFF: https://github.com/llvm/llvm-project/commit/418eb1c704e02fd5a3ab6741c8da0729b7279019.diff LOG: Fixed call again Added: Modified: llvm/test/CodeGen/PowerPC/builtins-ppc-xlcompat-conversionfunc.ll Removed: ################################################################################ diff --git a/llvm/test/CodeGen/PowerPC/builtins-ppc-xlcompat-conversionfunc.ll b/llvm/test/CodeGen/PowerPC/builtins-ppc-xlcompat-conversionfunc.ll index 0abcbccd7941..f5f0bca3955b 100644 --- a/llvm/test/CodeGen/PowerPC/builtins-ppc-xlcompat-conversionfunc.ll +++ b/llvm/test/CodeGen/PowerPC/builtins-ppc-xlcompat-conversionfunc.ll @@ -8,46 +8,46 @@ ; RUN: -mcpu=pwr9 < %s | FileCheck %s --check-prefix=CHECK-64 define dso_local double @test_fcfid(double %a) { - %0 = double @llvm.ppc.fcfid(double %a) + %0 = call double @llvm.ppc.fcfid(double %a) ret i64 %0 } define dso_local double @test_fcfud(double %a) { - %0 = double @llvm.ppc.fcfud(double %a) + %0 = call double @llvm.ppc.fcfud(double %a) ret i64 %0 } define dso_local double @test_fctid(double %a) { - %0 = double @llvm.ppc.fctid(double %a) + %0 = call double @llvm.ppc.fctid(double %a) ret i64 %0 } define dso_local double @test_fctidz(double %a) { - %0 = double @llvm.ppc.fctid(double %a) + %0 = call double @llvm.ppc.fctid(double %a) ret i64 %0 } define dso_local double @test_fctiw(double %a) { - %0 = double @llvm.ppc.fctid(double %a) + %0 = call double @llvm.ppc.fctid(double %a) ret i64 %0 } define dso_local double @test_fctiwz(double %a) { - %0 = double @llvm.ppc.fctid(double %a) + %0 = call double @llvm.ppc.fctid(double %a) ret i64 %0 } define dso_local double @test_fctudz(double %a) { - %0 = double @llvm.ppc.fctid(double %a) + %0 = call double @llvm.ppc.fctid(double %a) ret i64 %0 } define dso_local double @test_fctuwz(double %a) { - %0 = double @llvm.ppc.fctid(double %a) + %0 = call double @llvm.ppc.fctid(double %a) ret i64 %0 } define dso_local double @test_xl_fctuwz(double %a) { - %0 = double @llvm.ppc.fctid(double %a) + %0 = call double @llvm.ppc.fctid(double %a) ret i64 %0 } \ No newline at end of file _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits