Mark that the return is using EAX so that we don't use it for some other
[llvm.git] / test / ExecutionEngine / 2003-01-04-PhiTest.ll
blob2bc70d749f504f723284cddb304234606c2f25c6
1 ; RUN: lli %s > /dev/null
3 define i32 @main() {
4 ; <label>:0
5         br label %Loop
6 Loop:           ; preds = %Loop, %0
7         %X = phi i32 [ 0, %0 ], [ 1, %Loop ]            ; <i32> [#uses=1]
8         br i1 true, label %Out, label %Loop
9 Out:            ; preds = %Loop
10         ret i32 %X