summaryrefslogtreecommitdiff
path: root/test/Transforms/GVNPRE/insertelement.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/GVNPRE/insertelement.ll')
-rw-r--r--test/Transforms/GVNPRE/insertelement.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/Transforms/GVNPRE/insertelement.ll b/test/Transforms/GVNPRE/insertelement.ll
deleted file mode 100644
index caf8474bba7de..0000000000000
--- a/test/Transforms/GVNPRE/insertelement.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-; RUN: llvm-as < %s | opt -gvnpre | llvm-dis | grep b.gvnpre
-
-define i32 @extract() {
-entry: ; preds = %cond_false, %entry
- %foo = add <2 x i32> < i32 1, i32 1 >, < i32 1, i32 1 >
- br i1 true, label %cond_true, label %cond_false
-
-cond_true:
- br label %end
-
-cond_false:
- %a = insertelement <2 x i32> %foo, i32 0, i32 3
- br label %end
-
-end:
- %b = insertelement <2 x i32> %foo, i32 0, i32 3
- ret i32 0
-}