xref: /llvm-project/llvm/test/Bitcode/upgrade-powi-intrinsics.ll (revision 4c7f820b2b206bb7b4e32e575a78316701471203)
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2; RUN: opt -S < %s | FileCheck %s
3; RUN: llvm-dis < %s.bc | FileCheck %s
4
5; Verifying auto-upgrade for the change related to llvm.powi with the exponent
6; now being an overloaded operand.
7define void @foo(double %a, float %b, i32 %c) {
8; CHECK-LABEL: @foo(
9; CHECK-NEXT:    [[T1:%.*]] = call double @llvm.powi.f64.i32(double [[A:%.*]], i32 [[C:%.*]])
10; CHECK-NEXT:    [[T2:%.*]] = call float @llvm.powi.f32.i32(float [[B:%.*]], i32 [[C]])
11; CHECK-NEXT:    ret void
12;
13  %t1 = call double @llvm.powi.f64(double %a, i32 %c)
14  %t2 = call float @llvm.powi.f32(float %b, i32 %c)
15  ret void
16}
17
18; Function Attrs: nofree nosync nounwind readnone speculatable willreturn
19declare double @llvm.powi.f64(double, i32) #2
20
21; Function Attrs: nofree nosync nounwind readnone speculatable willreturn
22declare float @llvm.powi.f32(float, i32) #2
23
24attributes #2 = { nofree nosync nounwind readnone speculatable willreturn }
25