diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-30 20:18:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-30 20:18:09 +0000 |
commit | 1a24282b5c800907b402053c18d6310b38d6cefc (patch) | |
tree | 2775261e6ad072dc60372f6c4a4e1ebd1d5dfff7 /test/Analysis | |
parent | f9017b810a4b123b1743ad5244768ae960593641 (diff) | |
download | external_llvm-1a24282b5c800907b402053c18d6310b38d6cefc.zip external_llvm-1a24282b5c800907b402053c18d6310b38d6cefc.tar.gz external_llvm-1a24282b5c800907b402053c18d6310b38d6cefc.tar.bz2 |
Make sure to run these tests with load value #'ing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Analysis')
-rw-r--r-- | test/Analysis/LoadVN/RLE-Eliminate.ll | 2 | ||||
-rw-r--r-- | test/Analysis/LoadVN/RLE-Preserve.ll | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/Analysis/LoadVN/RLE-Eliminate.ll b/test/Analysis/LoadVN/RLE-Eliminate.ll index a8b1bf9..3abfc19 100644 --- a/test/Analysis/LoadVN/RLE-Eliminate.ll +++ b/test/Analysis/LoadVN/RLE-Eliminate.ll @@ -1,7 +1,7 @@ ; This testcase ensures that redundant loads are eliminated when they should ; be. All RL variables (redundant loads) should be eliminated. ; -; RUN: if as < %s | opt -gcse | dis | grep %RL +; RUN: if as < %s | opt -load-vn -gcse | dis | grep %RL ; RUN: then exit 1 ; RUN: else exit 0 ; RUN: fi diff --git a/test/Analysis/LoadVN/RLE-Preserve.ll b/test/Analysis/LoadVN/RLE-Preserve.ll index 50a3256..d341488 100644 --- a/test/Analysis/LoadVN/RLE-Preserve.ll +++ b/test/Analysis/LoadVN/RLE-Preserve.ll @@ -1,7 +1,8 @@ ; This testcase ensures that redundant loads are preserved when they are not ; allowed to be eliminated. ; RUN: as < %s | dis > Output/%s.before -; RUN: as < %s | opt -gcse | dis > Output/%s.after +; RUN: as < %s | opt -load-vn -gcse | dis > Output/%s.after +; RUN: echo some output ; RUN: diff Output/%s.before Output/%s.after ; int "test1"(int* %P) { |