aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-07-24 00:17:04 +0000
committerOwen Anderson <resistor@mac.com>2007-07-24 00:17:04 +0000
commita19580ccc003d2c236526cb7bcf76bda744260f3 (patch)
tree54b49c0c5a050d75950c7470abf7af78213c6a31 /test
parente6d377ad7df7f335c112d95dfbb526ffc5d28bb1 (diff)
downloadexternal_llvm-a19580ccc003d2c236526cb7bcf76bda744260f3.zip
external_llvm-a19580ccc003d2c236526cb7bcf76bda744260f3.tar.gz
external_llvm-a19580ccc003d2c236526cb7bcf76bda744260f3.tar.bz2
Rename a lot of things to change FastDLE to RedundantLoadElimination.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40457 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/RedundantLoadElimination/dg.exp (renamed from test/Transforms/DeadLoadElimination/dg.exp)0
-rw-r--r--test/Transforms/RedundantLoadElimination/simple.ll (renamed from test/Transforms/DeadLoadElimination/simple.ll)2
-rw-r--r--test/Transforms/RedundantLoadElimination/volatile.ll (renamed from test/Transforms/DeadLoadElimination/volatile.ll)2
3 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/DeadLoadElimination/dg.exp b/test/Transforms/RedundantLoadElimination/dg.exp
index 879685c..879685c 100644
--- a/test/Transforms/DeadLoadElimination/dg.exp
+++ b/test/Transforms/RedundantLoadElimination/dg.exp
diff --git a/test/Transforms/DeadLoadElimination/simple.ll b/test/Transforms/RedundantLoadElimination/simple.ll
index acfee2b..a1a7c3f 100644
--- a/test/Transforms/DeadLoadElimination/simple.ll
+++ b/test/Transforms/RedundantLoadElimination/simple.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -fdle | llvm-dis | not grep DEAD
+; RUN: llvm-as < %s | opt -rle | llvm-dis | not grep DEAD
define void @test(i32* %Q, i32* %P) {
%A = load i32* %Q
diff --git a/test/Transforms/DeadLoadElimination/volatile.ll b/test/Transforms/RedundantLoadElimination/volatile.ll
index 39d883b..5c70f4c 100644
--- a/test/Transforms/DeadLoadElimination/volatile.ll
+++ b/test/Transforms/RedundantLoadElimination/volatile.ll
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -fdle | llvm-dis | grep NOTDEAD
+; RUN: llvm-as < %s | opt -rle | llvm-dis | grep NOTDEAD
define void @test(i32* %Q, i32* %P) {
%A = load i32* %Q