rename *.llx -> *.ll, last batch.
[oota-llvm.git] / test / Transforms / ADCE / 2007-07-23-InfiniteLoop.ll
1 ; RUN: llvm-as < %s |   opt -adce | llvm-dis | grep switch
2 ; PR 1564
3 ; XFAIL: *
4   
5 define fastcc void @out() {
6     start:
7             br label %loop
8     unreachable:
9             unreachable
10     loop:
11             switch i32 0, label %unreachable [
12                      i32 0, label %loop
13             ]
14 }