Home | History | Annotate | Download | only in ExecutionEngine
      1 ; RUN: %lli %s > /dev/null
      2 
      3 ; Testcase distilled from 256.bzip2.
      4 
      5 target datalayout = "e-p:32:32"
      6 
      7 define i32 @main() {
      8 entry:
      9 	%X = add i32 1, -1		; <i32> [#uses=3]
     10 	br label %Next
     11 Next:		; preds = %entry
     12 	%A = phi i32 [ %X, %entry ]		; <i32> [#uses=0]
     13 	%B = phi i32 [ %X, %entry ]		; <i32> [#uses=0]
     14 	%C = phi i32 [ %X, %entry ]		; <i32> [#uses=1]
     15 	ret i32 %C
     16 }
     17 
     18