aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/TailDup/2009-07-31-phicrash.ll
blob: 6abd2a5bd69a1599c48c3cd6966eec95ab0b49a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: llvm-as < %s | opt -tailduplicate -disable-output
; PR4662

define void @a() {
BB:
	br label %BB6

BB6:
	%tmp9 = phi i64 [ 0, %BB ], [ 5, %BB34 ]
	br label %BB34

BB34:
	br label %BB6
}