diff options
author | 2010-01-26 19:25:59 +0000 | |
---|---|---|
committer | 2010-01-26 19:25:59 +0000 | |
commit | 80386c10d48ace61ce0e83ab2d24c100ebb6e984 (patch) | |
tree | 28f7184234c256bea72fc9be9ecf2d714245defe /llvm/test/Other | |
parent | Eliminate clang_getInstantiationLocationOffset(), and instead add an (diff) | |
download | llvm-project-80386c10d48ace61ce0e83ab2d24c100ebb6e984.tar.gz llvm-project-80386c10d48ace61ce0e83ab2d24c100ebb6e984.tar.bz2 llvm-project-80386c10d48ace61ce0e83ab2d24c100ebb6e984.zip |
-disable-output is no longer needed with -analyze.
llvm-svn: 94574
Diffstat (limited to 'llvm/test/Other')
-rw-r--r-- | llvm/test/Other/2007-06-05-PassID.ll | 2 | ||||
-rw-r--r-- | llvm/test/Other/2007-06-28-PassManager.ll | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Other/2007-06-05-PassID.ll b/llvm/test/Other/2007-06-05-PassID.ll index 7a03544f691b..2554b8b9edd0 100644 --- a/llvm/test/Other/2007-06-05-PassID.ll +++ b/llvm/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/llvm/test/Other/2007-06-28-PassManager.ll b/llvm/test/Other/2007-06-28-PassManager.ll index f162a40fbca3..0ed275948dba 100644 --- a/llvm/test/Other/2007-06-28-PassManager.ll +++ b/llvm/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 |