Skip to content

Commit 0ca84cb

Browse files
author
Leon Clark
committed
Remove undef.
1 parent 301bc14 commit 0ca84cb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/test/CodeGen/X86/vector-shuffle-256-v4.ll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2369,8 +2369,8 @@ define <4 x double> @blend_broadcasts_v4f64(ptr %p0, ptr %p1) {
23692369
; ALL-NEXT: retq
23702370
%ld0 = load <4 x double>, ptr %p0, align 32
23712371
%ld1 = load <4 x double>, ptr %p1, align 32
2372-
%bcst0 = shufflevector <4 x double> %ld0, <4 x double> undef, <4 x i32> zeroinitializer
2373-
%bcst1 = shufflevector <4 x double> %ld1, <4 x double> undef, <4 x i32> zeroinitializer
2372+
%bcst0 = shufflevector <4 x double> %ld0, <4 x double> poison, <4 x i32> zeroinitializer
2373+
%bcst1 = shufflevector <4 x double> %ld1, <4 x double> poison, <4 x i32> zeroinitializer
23742374
%blend = shufflevector <4 x double> %bcst0, <4 x double> %bcst1, <4 x i32> <i32 0, i32 5, i32 6, i32 3>
23752375
ret <4 x double> %blend
23762376
}
@@ -2420,8 +2420,8 @@ define <4 x double> @blend_broadcasts_v1f64_4x(ptr %p0, ptr %p1) {
24202420
; ALL-NEXT: retq
24212421
%ld0 = load <1 x double>, ptr %p0, align 32
24222422
%ld1 = load <1 x double>, ptr %p1, align 32
2423-
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> undef, <4 x i32> zeroinitializer
2424-
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> undef, <4 x i32> zeroinitializer
2423+
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> poison, <4 x i32> zeroinitializer
2424+
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> poison, <4 x i32> zeroinitializer
24252425
%blend = shufflevector <4 x double> %bcst0, <4 x double> %bcst1, <4 x i32> <i32 0, i32 5, i32 6, i32 3>
24262426
ret <4 x double> %blend
24272427
}
@@ -2435,8 +2435,8 @@ define <4 x double> @blend_broadcasts_v1f64_2x(ptr %p0, ptr %p1) {
24352435
; ALL-NEXT: retq
24362436
%ld0 = load <1 x double>, ptr %p0, align 32
24372437
%ld1 = load <1 x double>, ptr %p1, align 32
2438-
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> undef, <2 x i32> zeroinitializer
2439-
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> undef, <2 x i32> zeroinitializer
2438+
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> poison, <2 x i32> zeroinitializer
2439+
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> poison, <2 x i32> zeroinitializer
24402440
%blend = shufflevector <2 x double> %bcst0, <2 x double> %bcst1, <4 x i32> <i32 0, i32 2, i32 3, i32 1>
24412441
ret <4 x double> %blend
24422442
}

0 commit comments

Comments
 (0)