Reintroduce r320049, r320014 and r319894.
OpenGL issues should be fixed by now.
llvm-svn: 320568
diff --git a/llvm/test/Transforms/InstSimplify/insertelement.ll b/llvm/test/Transforms/InstSimplify/insertelement.ll
new file mode 100644
index 0000000..3acd921c
--- /dev/null
+++ b/llvm/test/Transforms/InstSimplify/insertelement.ll
@@ -0,0 +1,25 @@
+; RUN: opt -S -instsimplify < %s | FileCheck %s
+
+define <4 x i32> @test1(<4 x i32> %A) {
+ %I = insertelement <4 x i32> %A, i32 5, i64 4294967296
+ ; CHECK: ret <4 x i32> undef
+ ret <4 x i32> %I
+}
+
+define <4 x i32> @test2(<4 x i32> %A) {
+ %I = insertelement <4 x i32> %A, i32 5, i64 4
+ ; CHECK: ret <4 x i32> undef
+ ret <4 x i32> %I
+}
+
+define <4 x i32> @test3(<4 x i32> %A) {
+ %I = insertelement <4 x i32> %A, i32 5, i64 1
+ ; CHECK: ret <4 x i32> %I
+ ret <4 x i32> %I
+}
+
+define <4 x i32> @test4(<4 x i32> %A) {
+ %I = insertelement <4 x i32> %A, i32 5, i128 100
+ ; CHECK: ret <4 x i32> undef
+ ret <4 x i32> %I
+}
diff --git a/llvm/test/Transforms/InstSimplify/pr28725.ll b/llvm/test/Transforms/InstSimplify/pr28725.ll
index b85fc10..7ff0b90 100644
--- a/llvm/test/Transforms/InstSimplify/pr28725.ll
+++ b/llvm/test/Transforms/InstSimplify/pr28725.ll
@@ -1,6 +1,4 @@
; RUN: opt -S -instsimplify < %s | FileCheck %s
-target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
-target triple = "x86_64-pc-windows-msvc"
%S = type { i16, i32 }
define <2 x i16> @test1() {
@@ -9,5 +7,6 @@
ret <2 x i16> %b
}
+; InstCombine will be able to fold this into zeroinitializer
; CHECK-LABEL: @test1(
-; CHECK: ret <2 x i16> zeroinitializer
+; CHECK: ret <2 x i16> <i16 extractvalue (%S select (i1 icmp eq (i16 extractelement (<2 x i16> bitcast (<1 x i32> <i32 1> to <2 x i16>), i32 0), i16 0), %S zeroinitializer, %S { i16 0, i32 1 }), 0), i16 0>