[MCJIT] Remove a few redundant MCJIT tests, and drop the extraneous datalayout
[oota-llvm.git] / test / ExecutionEngine / MCJIT / 2003-06-05-PHIBug.ll
1 ; RUN: %lli %s > /dev/null
2
3 ; Testcase distilled from 256.bzip2.
4
5 define i32 @main() {
6 entry:
7         %X = add i32 1, -1              ; <i32> [#uses=3]
8         br label %Next
9 Next:           ; preds = %entry
10         %A = phi i32 [ %X, %entry ]             ; <i32> [#uses=0]
11         %B = phi i32 [ %X, %entry ]             ; <i32> [#uses=0]
12         %C = phi i32 [ %X, %entry ]             ; <i32> [#uses=1]
13         ret i32 %C
14 }
15