llvm-project/clang/test/CodeGen/conditional-gnu-ext.c

7 lines
84 B
C

// RUN: clang -emit-llvm %s
// PR1824
int foo(int x, short y) {
return x ?: y;
}