summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/conditional-gnu-ext.c
blob: f4ac81bf5934ac100160c17483222d07e06d34b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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;
}

OpenPOWER on IntegriCloud