[lit] Add argument check: --timeout must be non-negative integer
[llvm-core.git] / test / CodeGen / Generic / 2007-01-15-LoadSelectCycle.ll
blobaa6793b9c688379a06cbd1619132c4715d8d5e7c
1 ; RUN: llc < %s
2 ; PR1114
4 declare i1 @foo()
6 define i32 @test(i32* %A, i32* %B) {
7         %a = load i32, i32* %A
8         %b = load i32, i32* %B
9         %cond = call i1 @foo()
10         %c = select i1 %cond, i32 %a, i32 %b
11         ret i32 %c