aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/conditional-gnu-ext.c
blob: d4ae330949fffa2985b62136523bbfe6229455fa (plain)
1
2
3
4
5
6
// RUN: clang -emit-llvm %s -o %t
// PR1824

int foo(int x, short y) {
  return x ?: y;
}