diff options
| author | Owen Anderson <resistor@mac.com> | 2007-04-08 21:30:05 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2007-04-08 21:30:05 +0000 |
| commit | fe507270acf0cfb756492b79f8f13b66600eaa53 (patch) | |
| tree | b8e1ecf477e15ef9b102c95359e758c8204114de /llvm/test | |
| parent | 5f2e025c787bf12e86a068c18d1916c1c3633bb7 (diff) | |
| download | bcm5719-llvm-fe507270acf0cfb756492b79f8f13b66600eaa53.tar.gz bcm5719-llvm-fe507270acf0cfb756492b79f8f13b66600eaa53.zip | |
Remove DomSet completely. This concludes work on PR1171.
llvm-svn: 35775
Diffstat (limited to 'llvm/test')
4 files changed, 3 insertions, 29 deletions
diff --git a/llvm/test/Analysis/Dominators/2003-05-12-UnreachableCode.ll b/llvm/test/Analysis/Dominators/2003-05-12-UnreachableCode.ll deleted file mode 100644 index 256cb54e56d..00000000000 --- a/llvm/test/Analysis/Dominators/2003-05-12-UnreachableCode.ll +++ /dev/null @@ -1,15 +0,0 @@ -; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -domset -disable-verify -; -int %re_match_2() { -ENTRY: - br label %loopexit.20 -loopentry.20: - br label %loopexit.20 - -loopexit.20: - ret int 0 - -endif.46: ; UNREACHABLE - br label %loopentry.20 - -} diff --git a/llvm/test/Analysis/Dominators/2007-01-14-BreakCritEdges.ll b/llvm/test/Analysis/Dominators/2007-01-14-BreakCritEdges.ll index e6eb0008d64..a00433adbbf 100644 --- a/llvm/test/Analysis/Dominators/2007-01-14-BreakCritEdges.ll +++ b/llvm/test/Analysis/Dominators/2007-01-14-BreakCritEdges.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -domset -break-crit-edges -domtree -disable-output +; RUN: llvm-as < %s | opt -break-crit-edges -domtree -disable-output ; PR1110 %struct.OggVorbis_File = type { i8*, i32, i64, i64, %struct.ogg_sync_state, i32, i64*, i64*, i32*, i64*, %struct.vorbis_info*, %struct.vorbis_comment*, i64, i32, i32, i32, double, double, %struct.ogg_stream_state, %struct.vorbis_dsp_state, %struct.vorbis_block, %struct.ov_callbacks } diff --git a/llvm/test/BugPoint/crash-basictest.ll b/llvm/test/BugPoint/crash-basictest.ll index 647a53f46e3..f631d701193 100644 --- a/llvm/test/BugPoint/crash-basictest.ll +++ b/llvm/test/BugPoint/crash-basictest.ll @@ -1,6 +1,6 @@ ; Basic test for bugpoint. -; RUN: bugpoint %s -domset -idom -domset -bugpoint-crashcalls \ -; RUN: -domset -idom -domset +; RUN: bugpoint %s -idom -bugpoint-crashcalls \ +; RUN: -idom define i32 @test() { call i32 @test() diff --git a/llvm/test/Other/2002-08-02-DomSetProblem.ll b/llvm/test/Other/2002-08-02-DomSetProblem.ll deleted file mode 100644 index f62135d3f11..00000000000 --- a/llvm/test/Other/2002-08-02-DomSetProblem.ll +++ /dev/null @@ -1,11 +0,0 @@ -; Dominator set calculation is not calculating dominators for unreachable -; blocks. These blocks should at least dominate themselves. This is -; fouling up the verify pass. -; -; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -domset | grep BB - -void %test() { - ret void -BB: - ret void -} |

