summaryrefslogtreecommitdiff
path: root/test/Transforms/LoopDeletion/2007-07-23-InfiniteLoop.ll
blob: bcc73fdfab83b89915f2dbcc3c702d58f18b1aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: opt < %s -loop-deletion -S | grep switch
; PR 1564
  
define fastcc void @out() {
    start:
            br label %loop
    unreachable:
            unreachable
    loop:
            switch i32 0, label %unreachable [
                     i32 0, label %loop
            ]
}