aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-09-15 17:38:04 +0000
committerChris Lattner <sabre@nondot.org>2007-09-15 17:38:04 +0000
commit402a7888a984d7f3c84a0a2353e2b92c39631750 (patch)
tree3d531d6d10103f74867381a026a33e70597c06da /test
parent5bda9e49ec9432b610289aae4ee251c803513851 (diff)
downloadexternal_llvm-402a7888a984d7f3c84a0a2353e2b92c39631750.zip
external_llvm-402a7888a984d7f3c84a0a2353e2b92c39631750.tar.gz
external_llvm-402a7888a984d7f3c84a0a2353e2b92c39631750.tar.bz2
remove obsolete tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41984 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/RedundantLoadElimination/dg.exp3
-rw-r--r--test/Transforms/RedundantLoadElimination/simple.ll7
-rw-r--r--test/Transforms/RedundantLoadElimination/volatile.ll7
3 files changed, 0 insertions, 17 deletions
diff --git a/test/Transforms/RedundantLoadElimination/dg.exp b/test/Transforms/RedundantLoadElimination/dg.exp
deleted file mode 100644
index 879685c..0000000
--- a/test/Transforms/RedundantLoadElimination/dg.exp
+++ /dev/null
@@ -1,3 +0,0 @@
-load_lib llvm.exp
-
-RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]]
diff --git a/test/Transforms/RedundantLoadElimination/simple.ll b/test/Transforms/RedundantLoadElimination/simple.ll
deleted file mode 100644
index a1a7c3f..0000000
--- a/test/Transforms/RedundantLoadElimination/simple.ll
+++ /dev/null
@@ -1,7 +0,0 @@
-; RUN: llvm-as < %s | opt -rle | llvm-dis | not grep DEAD
-
-define void @test(i32* %Q, i32* %P) {
- %A = load i32* %Q
- %DEAD = load i32* %Q ; <i32> [#uses=1]
- ret void
-}
diff --git a/test/Transforms/RedundantLoadElimination/volatile.ll b/test/Transforms/RedundantLoadElimination/volatile.ll
deleted file mode 100644
index 5c70f4c..0000000
--- a/test/Transforms/RedundantLoadElimination/volatile.ll
+++ /dev/null
@@ -1,7 +0,0 @@
-; RUN: llvm-as < %s | opt -rle | llvm-dis | grep NOTDEAD
-
-define void @test(i32* %Q, i32* %P) {
- %A = load i32* %Q
- %NOTDEAD = volatile load i32* %Q ; <i32> [#uses=1]
- ret void
-}