aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-18 05:03:41 +0000
committerChris Lattner <sabre@nondot.org>2009-10-18 05:03:41 +0000
commit76596c86c4233525b81d65cdd639e667fe42d5e8 (patch)
tree8b73015bae2cf23c7354d6c94785d370732c69d5
parentec63ad6c1fe1fe978c70ee2d5e752fda7dfcaecd (diff)
remove testcase for dead pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84406 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Transforms/IndMemRem/2009-01-24-Noalias.ll13
-rw-r--r--test/Transforms/IndMemRem/dg.exp3
2 files changed, 0 insertions, 16 deletions
diff --git a/test/Transforms/IndMemRem/2009-01-24-Noalias.ll b/test/Transforms/IndMemRem/2009-01-24-Noalias.ll
deleted file mode 100644
index 043291e756..0000000000
--- a/test/Transforms/IndMemRem/2009-01-24-Noalias.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: opt < %s -indmemrem -S | grep bounce | grep noalias
-target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
-target triple = "i686-apple-darwin8"
-
-declare i8* @malloc(i32)
-
-@g = external global i8*
-
-define void @test() {
- %A = bitcast i8* (i32) * @malloc to i8*
- store i8* %A, i8** @g
- ret void
-}
diff --git a/test/Transforms/IndMemRem/dg.exp b/test/Transforms/IndMemRem/dg.exp
deleted file mode 100644
index f2005891a5..0000000000
--- a/test/Transforms/IndMemRem/dg.exp
+++ /dev/null
@@ -1,3 +0,0 @@
-load_lib llvm.exp
-
-RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,c,cpp}]]