Skip to content

Commit 0edbdd0

Browse files
author
Leon Clark
committed
Remove undef.
1 parent 9260842 commit 0edbdd0

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
@@ -2376,8 +2376,8 @@ define <4 x double> @blend_broadcasts_v4f64(ptr %p0, ptr %p1) {
23762376
; ALL-NEXT: retq
23772377
%ld0 = load <4 x double>, ptr %p0, align 32
23782378
%ld1 = load <4 x double>, ptr %p1, align 32
2379-
%bcst0 = shufflevector <4 x double> %ld0, <4 x double> undef, <4 x i32> zeroinitializer
2380-
%bcst1 = shufflevector <4 x double> %ld1, <4 x double> undef, <4 x i32> zeroinitializer
2379+
%bcst0 = shufflevector <4 x double> %ld0, <4 x double> poison, <4 x i32> zeroinitializer
2380+
%bcst1 = shufflevector <4 x double> %ld1, <4 x double> poison, <4 x i32> zeroinitializer
23812381
%blend = shufflevector <4 x double> %bcst0, <4 x double> %bcst1, <4 x i32> <i32 0, i32 5, i32 6, i32 3>
23822382
ret <4 x double> %blend
23832383
}
@@ -2427,8 +2427,8 @@ define <4 x double> @blend_broadcasts_v1f64_4x(ptr %p0, ptr %p1) {
24272427
; ALL-NEXT: retq
24282428
%ld0 = load <1 x double>, ptr %p0, align 32
24292429
%ld1 = load <1 x double>, ptr %p1, align 32
2430-
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> undef, <4 x i32> zeroinitializer
2431-
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> undef, <4 x i32> zeroinitializer
2430+
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> poison, <4 x i32> zeroinitializer
2431+
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> poison, <4 x i32> zeroinitializer
24322432
%blend = shufflevector <4 x double> %bcst0, <4 x double> %bcst1, <4 x i32> <i32 0, i32 5, i32 6, i32 3>
24332433
ret <4 x double> %blend
24342434
}
@@ -2442,8 +2442,8 @@ define <4 x double> @blend_broadcasts_v1f64_2x(ptr %p0, ptr %p1) {
24422442
; ALL-NEXT: retq
24432443
%ld0 = load <1 x double>, ptr %p0, align 32
24442444
%ld1 = load <1 x double>, ptr %p1, align 32
2445-
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> undef, <2 x i32> zeroinitializer
2446-
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> undef, <2 x i32> zeroinitializer
2445+
%bcst0 = shufflevector <1 x double> %ld0, <1 x double> poison, <2 x i32> zeroinitializer
2446+
%bcst1 = shufflevector <1 x double> %ld1, <1 x double> poison, <2 x i32> zeroinitializer
24472447
%blend = shufflevector <2 x double> %bcst0, <2 x double> %bcst1, <4 x i32> <i32 0, i32 2, i32 3, i32 1>
24482448
ret <4 x double> %blend
24492449
}

0 commit comments

Comments
 (0)