Skip to content

Commit 994ef4e

Browse files
committed
[InstCombine] Fix test name to match type. NFCI.
We're testing a <2 x i36> not <2 x i16>
1 parent 15645d0 commit 994ef4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/test/Transforms/InstCombine/rotate.ll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ define <2 x i32> @rotr_v2i32_constant_nonsplat(<2 x i32> %x) {
105105
ret <2 x i32> %r
106106
}
107107

108-
define <2 x i36> @rotl_v2i16_constant_nonsplat(<2 x i36> %x) {
109-
; CHECK-LABEL: @rotl_v2i16_constant_nonsplat(
108+
define <2 x i36> @rotl_v2i36_constant_nonsplat(<2 x i36> %x) {
109+
; CHECK-LABEL: @rotl_v2i36_constant_nonsplat(
110110
; CHECK-NEXT: [[SHL:%.*]] = shl <2 x i36> [[X:%.*]], <i36 21, i36 11>
111111
; CHECK-NEXT: [[SHR:%.*]] = lshr <2 x i36> [[X]], <i36 15, i36 25>
112112
; CHECK-NEXT: [[R:%.*]] = or <2 x i36> [[SHL]], [[SHR]]

0 commit comments

Comments
 (0)