diff options
Diffstat (limited to 'llvm/test/Transforms/InstSimplify/insertelement.ll')
| -rw-r--r-- | llvm/test/Transforms/InstSimplify/insertelement.ll | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/llvm/test/Transforms/InstSimplify/insertelement.ll b/llvm/test/Transforms/InstSimplify/insertelement.ll deleted file mode 100644 index 3acd921cbad..00000000000 --- a/llvm/test/Transforms/InstSimplify/insertelement.ll +++ /dev/null @@ -1,25 +0,0 @@ -; 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 -} |

