diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-26 19:25:59 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-26 19:25:59 +0000 |
commit | 8a977e2edd2ca182851cea96262ed9ba0c854c52 (patch) | |
tree | 350847cd4bead3155ae25dbca9353dcc2b2b8b19 /test/Other | |
parent | c9c36cb3d97e2aeb86b35e0ba168769d06f6f058 (diff) | |
download | external_llvm-8a977e2edd2ca182851cea96262ed9ba0c854c52.zip external_llvm-8a977e2edd2ca182851cea96262ed9ba0c854c52.tar.gz external_llvm-8a977e2edd2ca182851cea96262ed9ba0c854c52.tar.bz2 |
-disable-output is no longer needed with -analyze.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Other')
-rw-r--r-- | test/Other/2007-06-05-PassID.ll | 2 | ||||
-rw-r--r-- | test/Other/2007-06-28-PassManager.ll | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/Other/2007-06-05-PassID.ll b/test/Other/2007-06-05-PassID.ll index 7a03544..2554b8b 100644 --- a/test/Other/2007-06-05-PassID.ll +++ b/test/Other/2007-06-05-PassID.ll @@ -1,4 +1,4 @@ -;RUN: opt < %s -analyze -dot-cfg-only -disable-output 2>/dev/null +;RUN: opt < %s -analyze -dot-cfg-only 2>/dev/null ;PR 1497 define void @foo() { diff --git a/test/Other/2007-06-28-PassManager.ll b/test/Other/2007-06-28-PassManager.ll index f162a40..0ed2759 100644 --- a/test/Other/2007-06-28-PassManager.ll +++ b/test/Other/2007-06-28-PassManager.ll @@ -1,6 +1,6 @@ -; RUN: opt < %s -analyze -inline -disable-output +; RUN: opt < %s -analyze -inline ; PR1526 -; RUN: opt < %s -analyze -indvars -disable-output +; RUN: opt < %s -analyze -indvars ; PR1539 define i32 @test1() { ret i32 0 |