xref: /llvm-project/clang/test/CodeGen/conditional-gnu-ext.c (revision 19d84c3c51766ea618564af439188f349a4e87e8)
1 // RUN: clang -emit-llvm %s -o %t
2 // PR1824
3 
4 int foo(int x, short y) {
5   return x ?: y;
6 }
7