blob: 15359e0c8ac183e809a809d2f513ae992d8b1fdc [file] [log] [blame]
Chris Lattner8da1cb62007-07-13 20:18:44 +00001// RUN: clang -emit-llvm %s
2
3float test1(int cond, float a, float b)
4{
5 return cond ? a : b;
6}
Chris Lattner8da1cb62007-07-13 20:18:44 +00007double test2(int cond, float a, double b)
8{
9 return cond ? a : b;
10}
Chris Lattner2202bce2007-11-30 17:56:23 +000011
12void f();
13
14void test3(){
15 1 ? f() : (void)0;
16}
17