Files
clang-p2996/clang/test/CodeGen/conditional.c
2007-11-30 17:56:23 +00:00

18 lines
216 B
C

// RUN: clang -emit-llvm %s
float test1(int cond, float a, float b)
{
return cond ? a : b;
}
double test2(int cond, float a, double b)
{
return cond ? a : b;
}
void f();
void test3(){
1 ? f() : (void)0;
}