Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1 | // RUN: clang -emit-llvm %s |
2 | |||||
3 | float test1(int cond, float a, float b) | ||||
4 | { | ||||
5 | return cond ? a : b; | ||||
6 | } | ||||
Chris Lattner | 4b00965 | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 7 | double test2(int cond, float a, double b) |
8 | { | ||||
9 | return cond ? a : b; | ||||
10 | } | ||||
Chris Lattner | 307da02 | 2007-11-30 17:56:23 +0000 | [diff] [blame] | 11 | |
12 | void f(); | ||||
13 | |||||
14 | void test3(){ | ||||
15 | 1 ? f() : (void)0; | ||||
16 | } | ||||
17 |