[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / conditional.c
blob464341250edf1817cb22514a419dd173a9ce6e94
1 // RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
3 float test1(int cond, float a, float b) {
4 return cond ? a : b;
7 double test2(int cond, float a, double b) {
8 return cond ? a : b;
11 void f(void);
13 void test3(void){
14 1 ? f() : (void)0;
17 void test4(void) {
18 int i; short j;
19 float* k = 1 ? &i : &j;
22 void test5(void) {
23 const int* cip;
24 void* vp;
25 cip = 0 ? vp : cip;
28 void test6(void);
29 void test7(int);
30 void* test8(void) {return 1 ? test6 : test7;}
33 void _efree(void *ptr);
34 void free(void *ptr);
36 void _php_stream_free3(void) {
37 (1 ? free(0) : _efree(0));
40 void _php_stream_free4(void) {
41 1 ? _efree(0) : free(0);
44 // PR5526
45 struct test9 { int a; };
46 void* test9spare(void);
47 void test9(struct test9 *p) {
48 p ? p : test9spare();
51 // CHECK: @test10
52 // CHECK: select i1 {{.*}}, i32 4, i32 5
53 int test10(int c) {
54 return c ? 4 : 5;
56 enum { Gronk = 5 };
58 // rdar://9289603
59 // CHECK: @test11
60 // CHECK: select i1 {{.*}}, i32 4, i32 5
61 int test11(int c) {
62 return c ? 4 : Gronk;
65 // CHECK: @test12
66 // CHECK: select i1 {{.*}}, double 4.0{{.*}}, double 2.0
67 double test12(int c) {
68 return c ? 4.0 : 2.0;
70 // CHECK: @test13
71 // CHECK: call {{.*}} @f2(
72 int f2(void);
73 void test13(void) {
74 f2() ? (void)0 : (void)0;