blob: ef3283d1d498c418980bcffa8d71042f8b514238 [file] [log] [blame]
// RUN: clang -emit-llvm %s
float test1(int cond, float a, float b)
{
return cond ? a : b;
}
/* this will fail for now...
double test2(int cond, float a, double b)
{
return cond ? a : b;
}
*/