--TEST-- 001: cond function --ARGS-- --emit-llvm --CODE-- { l_1 = START(l_4); int32_t x = PARAM(l_1, "x", 1); int32_t y = PARAM(l_1, "y", 2); bool z = PARAM(l_1, "z", 3); int32_t ret = COND(z, x, y); l_4 = RETURN(l_1, ret); } --EXPECT-- define i32 @test(i32 %d2, i32 %d3, i1 %d4) { %d5 = select i1 %d4, i32 %d2, i32 %d3 ret i32 %d5 }