https://github.com/epiqc/ScaffCC
Raw File
Tip revision: 1b57c8e01a682145f576e101c868ba84ea38ec1b authored by ah744 on 06 August 2016, 01:41:28 UTC
Fixed Rotation Decomposition Naming and BF Type Mismatch
Tip revision: 1b57c8e
2003-01-04-PhiTest.ll
; RUN: %lli %s > /dev/null

define i32 @main() {
; <label>:0
	br label %Loop
Loop:		; preds = %Loop, %0
	%X = phi i32 [ 0, %0 ], [ 1, %Loop ]		; <i32> [#uses=1]
	br i1 true, label %Out, label %Loop
Out:		; preds = %Loop
	ret i32 %X
}

back to top