Skip to content

Commit 6fd04bf

Browse files
author
badumbatish
committed
Fix naming nits from PR
1 parent 7cbdda8 commit 6fd04bf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

llvm/test/Transforms/InstSimplify/fold-intrinsics.ll

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ define i32 @test_ctpop_poison(i32 %a) {
5353
ret i32 %res
5454
}
5555

56-
define void @pow_poison_i16(i16 %arg_int,float %arg_flt, ptr %P) {
57-
; CHECK-LABEL: @pow_poison_i16(
56+
define void @pow_poison(i16 %arg_int,float %arg_flt, ptr %P) {
57+
; CHECK-LABEL: @pow_poison(
5858
; CHECK-NEXT: store volatile float poison, ptr [[P:%.*]], align 4
5959
; CHECK-NEXT: store volatile float poison, ptr [[P]], align 4
6060
; CHECK-NEXT: store volatile float poison, ptr [[P]], align 4
@@ -63,19 +63,19 @@ define void @pow_poison_i16(i16 %arg_int,float %arg_flt, ptr %P) {
6363
; CHECK-NEXT: store volatile float poison, ptr [[P]], align 4
6464
; CHECK-NEXT: ret void
6565
;
66-
%2 = tail call float @llvm.powi.f32.i16(float poison, i16 %arg_int) nounwind
66+
%2 = tail call float @llvm.powi(float poison, i16 %arg_int) nounwind
6767
store volatile float %2, ptr %P
6868

6969
%3 = tail call float @llvm.pow(float poison, float %arg_flt) nounwind
7070
store volatile float %3, ptr %P
7171

72-
%4 = tail call float @llvm.powi.f32.i16(float %arg_flt, i16 poison) nounwind
72+
%4 = tail call float @llvm.powi(float %arg_flt, i16 poison) nounwind
7373
store volatile float %4, ptr %P
7474

7575
%5 = tail call float @llvm.pow(float %arg_flt, float poison) nounwind
7676
store volatile float %5, ptr %P
7777

78-
%6 = tail call float @llvm.powi.f32.i16(float poison, i16 poison) nounwind
78+
%6 = tail call float @llvm.powi(float poison, i16 poison) nounwind
7979
store volatile float %6, ptr %P
8080

8181
%7 = tail call float @llvm.pow(float poison, float poison) nounwind

0 commit comments

Comments
 (0)