brintos

brintos / llvm-project-archived public Read only

0
0
Text · 977 B · 2ad8adc Raw
25 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py2; RUN: opt -S < %s | FileCheck %s3; RUN: llvm-dis < %s.bc | FileCheck %s4 5; Verifying auto-upgrade for the change related to llvm.powi with the exponent6; 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 void12;13  %t1 = call double @llvm.powi.f64(double %a, i32 %c)14  %t2 = call float @llvm.powi.f32(float %b, i32 %c)15  ret void16}17 18; Function Attrs: nofree nosync nounwind readnone speculatable willreturn19declare double @llvm.powi.f64(double, i32) #220 21; Function Attrs: nofree nosync nounwind readnone speculatable willreturn22declare float @llvm.powi.f32(float, i32) #223 24attributes #2 = { nofree nosync nounwind readnone speculatable willreturn }25