summaryrefslogtreecommitdiff
path: root/test/Transforms/GVNPRE/gep.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/GVNPRE/gep.ll')
-rw-r--r--test/Transforms/GVNPRE/gep.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/Transforms/GVNPRE/gep.ll b/test/Transforms/GVNPRE/gep.ll
deleted file mode 100644
index 34bc4c79ab12f..0000000000000
--- a/test/Transforms/GVNPRE/gep.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llvm-as < %s | opt -gvnpre | llvm-dis | grep b.gvnpre
-
-define i32 @extract({ i32 }* %P) {
-entry: ; preds = %cond_false, %entry
- br i1 true, label %cond_true, label %cond_false
-
-cond_true:
- br label %end
-
-cond_false:
- %a = getelementptr { i32 }* %P, i32 0, i32 0
- br label %end
-
-end:
- %b = getelementptr { i32 }* %P, i32 0, i32 0
- ret i32 0
-}