blob: 1483d8af85928e20b08cf44371f768b768e2add8 [file] [log] [blame]
// RUN: clang-cc -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;
}