freebsd-dev/test/CodeGen/conditional-gnu-ext.c
2010-01-01 10:34:51 +00:00

13 lines
169 B
C

// RUN: %clang_cc1 -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;
}