Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / CodeGen / Blackfin / simple-select.ll
blob0f7f270967a610eee93e041ab00fa0a598de96bc
1 ; RUN: llc < %s -march=bfin -verify-machineinstrs > %t
3 declare i1 @foo()
5 define i32 @test(i32* %A, i32* %B) {
6         %a = load i32* %A
7         %b = load i32* %B
8         %cond = call i1 @foo()
9         %c = select i1 %cond, i32 %a, i32 %b
10         ret i32 %c