blob: c3ff2bdccc5f974efae2b445cb31459494067e8a [file] [log] [blame]
// RUN: clang -emit-llvm %s -o %t
// PR1824
int foo(int x, short y) {
return x ?: y;
}
// rdar://6586493
float test(float x, int Y) {
return Y != 0 ? : x;
}