blob: c3ff2bdccc5f974efae2b445cb31459494067e8a [file] [log] [blame]
Daniel Dunbar2d6ca8d2008-08-21 02:51:29 +00001// RUN: clang -emit-llvm %s -o %t
Chris Lattnera21ddb32007-11-26 01:40:58 +00002// PR1824
3
4int foo(int x, short y) {
5 return x ?: y;
6}
Chris Lattner12d152f2009-02-13 23:35:32 +00007
8// rdar://6586493
9float test(float x, int Y) {
10 return Y != 0 ? : x;
11}
12