llvm-project/llvm/test/Regression/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll

16 lines
237 B
LLVM

target endian = little
target pointersize = 32
implementation
int %main() {
entry:
br label %endif
then:
br label %endif
endif:
%x = phi uint [ 4, %entry ], [ 27, %then ]
%result = phi int [ 32, %then ], [ 0, %entry ]
ret int 0
}