1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple i386-pc-linux-gnu -ffreestanding -verify -emit-llvm -o - %s | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc #include <stdint.h> 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc // Brace-enclosed string array initializers 6*f4a2713aSLionel Sambuc char a[] = { "asdf" }; 7*f4a2713aSLionel Sambuc // CHECK: @a = global [5 x i8] c"asdf\00" 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc char a2[2][5] = { "asdf" }; 10*f4a2713aSLionel Sambuc // CHECK: @a2 = global [2 x [5 x i8]] {{\[}}[5 x i8] c"asdf\00", [5 x i8] zeroinitializer] 11*f4a2713aSLionel Sambuc 12*f4a2713aSLionel Sambuc // Double-implicit-conversions of array/functions (not legal C, but 13*f4a2713aSLionel Sambuc // clang accepts it for gcc compat). 14*f4a2713aSLionel Sambuc intptr_t b = a; // expected-warning {{incompatible pointer to integer conversion}} 15*f4a2713aSLionel Sambuc int c(); 16*f4a2713aSLionel Sambuc void *d = c; 17*f4a2713aSLionel Sambuc intptr_t e = c; // expected-warning {{incompatible pointer to integer conversion}} 18*f4a2713aSLionel Sambuc 19*f4a2713aSLionel Sambuc int f, *g = __extension__ &f, *h = (1 != 1) ? &f : &f; 20*f4a2713aSLionel Sambuc 21*f4a2713aSLionel Sambuc union s2 { 22*f4a2713aSLionel Sambuc struct { 23*f4a2713aSLionel Sambuc struct { } *f0; 24*f4a2713aSLionel Sambuc } f0; 25*f4a2713aSLionel Sambuc }; 26*f4a2713aSLionel Sambuc 27*f4a2713aSLionel Sambuc int g0 = (int)(&(((union s2 *) 0)->f0.f0) - 0); 28*f4a2713aSLionel Sambuc 29*f4a2713aSLionel Sambuc // CHECK: @g1x = global { double, double } { double 1.000000e+00{{[0]*}}, double 0.000000e+00{{[0]*}} } 30*f4a2713aSLionel Sambuc _Complex double g1x = 1.0f; 31*f4a2713aSLionel Sambuc // CHECK: @g1y = global { double, double } { double 0.000000e+00{{[0]*}}, double 1.000000e+00{{[0]*}} } 32*f4a2713aSLionel Sambuc _Complex double g1y = 1.0fi; 33*f4a2713aSLionel Sambuc // CHECK: @g1 = global { i8, i8 } { i8 1, i8 10 } 34*f4a2713aSLionel Sambuc _Complex char g1 = (char) 1 + (char) 10 * 1i; 35*f4a2713aSLionel Sambuc // CHECK: @g2 = global { i32, i32 } { i32 1, i32 10 } 36*f4a2713aSLionel Sambuc _Complex int g2 = 1 + 10i; 37*f4a2713aSLionel Sambuc // CHECK: @g3 = global { float, float } { float 1.000000e+00{{[0]*}}, float 1.000000e+0{{[0]*}}1 } 38*f4a2713aSLionel Sambuc _Complex float g3 = 1.0 + 10.0i; 39*f4a2713aSLionel Sambuc // CHECK: @g4 = global { double, double } { double 1.000000e+00{{[0]*}}, double 1.000000e+0{{[0]*}}1 } 40*f4a2713aSLionel Sambuc _Complex double g4 = 1.0 + 10.0i; 41*f4a2713aSLionel Sambuc // CHECK: @g5 = global { i32, i32 } zeroinitializer 42*f4a2713aSLionel Sambuc _Complex int g5 = (2 + 3i) == (5 + 7i); 43*f4a2713aSLionel Sambuc // CHECK: @g6 = global { double, double } { double -1.100000e+0{{[0]*}}1, double 2.900000e+0{{[0]*}}1 } 44*f4a2713aSLionel Sambuc _Complex double g6 = (2.0 + 3.0i) * (5.0 + 7.0i); 45*f4a2713aSLionel Sambuc // CHECK: @g7 = global i32 1 46*f4a2713aSLionel Sambuc int g7 = (2 + 3i) * (5 + 7i) == (-11 + 29i); 47*f4a2713aSLionel Sambuc // CHECK: @g8 = global i32 1 48*f4a2713aSLionel Sambuc int g8 = (2.0 + 3.0i) * (5.0 + 7.0i) == (-11.0 + 29.0i); 49*f4a2713aSLionel Sambuc // CHECK: @g9 = global i32 0 50*f4a2713aSLionel Sambuc int g9 = (2 + 3i) * (5 + 7i) != (-11 + 29i); 51*f4a2713aSLionel Sambuc // CHECK: @g10 = global i32 0 52*f4a2713aSLionel Sambuc int g10 = (2.0 + 3.0i) * (5.0 + 7.0i) != (-11.0 + 29.0i); 53*f4a2713aSLionel Sambuc 54*f4a2713aSLionel Sambuc // PR5108 55*f4a2713aSLionel Sambuc // CHECK: @gv1 = global %struct.anon <{ i32 0, i8 7 }>, align 1 56*f4a2713aSLionel Sambuc struct { 57*f4a2713aSLionel Sambuc unsigned long a; 58*f4a2713aSLionel Sambuc unsigned long b:3; 59*f4a2713aSLionel Sambuc } __attribute__((__packed__)) gv1 = { .a = 0x0, .b = 7, }; 60*f4a2713aSLionel Sambuc 61*f4a2713aSLionel Sambuc // PR5118 62*f4a2713aSLionel Sambuc // CHECK: @gv2 = global %struct.anon.0 <{ i8 1, i8* null }>, align 1 63*f4a2713aSLionel Sambuc struct { 64*f4a2713aSLionel Sambuc unsigned char a; 65*f4a2713aSLionel Sambuc char *b; 66*f4a2713aSLionel Sambuc } __attribute__((__packed__)) gv2 = { 1, (void*)0 }; 67*f4a2713aSLionel Sambuc 68*f4a2713aSLionel Sambuc // Global references 69*f4a2713aSLionel Sambuc // CHECK: @g11.l0 = internal global i32 ptrtoint (i32 ()* @g11 to i32) 70*f4a2713aSLionel Sambuc long g11() { 71*f4a2713aSLionel Sambuc static long l0 = (long) g11; 72*f4a2713aSLionel Sambuc return l0; 73*f4a2713aSLionel Sambuc } 74*f4a2713aSLionel Sambuc 75*f4a2713aSLionel Sambuc // CHECK: @g12 = global i32 ptrtoint (i8* @g12_tmp to i32) 76*f4a2713aSLionel Sambuc static char g12_tmp; 77*f4a2713aSLionel Sambuc long g12 = (long) &g12_tmp; 78*f4a2713aSLionel Sambuc 79*f4a2713aSLionel Sambuc // CHECK: @g13 = global [1 x %struct.g13_s0] [%struct.g13_s0 { i32 ptrtoint (i8* @g12_tmp to i32) }] 80*f4a2713aSLionel Sambuc struct g13_s0 { 81*f4a2713aSLionel Sambuc long a; 82*f4a2713aSLionel Sambuc }; 83*f4a2713aSLionel Sambuc struct g13_s0 g13[] = { 84*f4a2713aSLionel Sambuc { (long) &g12_tmp } 85*f4a2713aSLionel Sambuc }; 86*f4a2713aSLionel Sambuc 87*f4a2713aSLionel Sambuc // CHECK: @g14 = global i8* inttoptr (i64 100 to i8*) 88*f4a2713aSLionel Sambuc void *g14 = (void*) 100; 89*f4a2713aSLionel Sambuc 90*f4a2713aSLionel Sambuc // CHECK: @g15 = global i32 -1 91*f4a2713aSLionel Sambuc int g15 = (int) (char) ((void*) 0 + 255); 92*f4a2713aSLionel Sambuc 93*f4a2713aSLionel Sambuc // CHECK: @g16 = global i64 4294967295 94*f4a2713aSLionel Sambuc long long g16 = (long long) ((void*) 0xFFFFFFFF); 95*f4a2713aSLionel Sambuc 96*f4a2713aSLionel Sambuc // CHECK: @g17 = global i32* @g15 97*f4a2713aSLionel Sambuc int *g17 = (int *) ((long) &g15); 98*f4a2713aSLionel Sambuc 99*f4a2713aSLionel Sambuc // CHECK: @g18.p = internal global [1 x i32*] [i32* @g19] 100*f4a2713aSLionel Sambuc void g18(void) { 101*f4a2713aSLionel Sambuc extern int g19; 102*f4a2713aSLionel Sambuc static int *p[] = { &g19 }; 103*f4a2713aSLionel Sambuc } 104*f4a2713aSLionel Sambuc 105*f4a2713aSLionel Sambuc // CHECK: @g20.l0 = internal global %struct.g20_s1 { %struct.g20_s0* null, %struct.g20_s0** getelementptr inbounds (%struct.g20_s1* @g20.l0, i32 0, i32 0) } 106*f4a2713aSLionel Sambuc struct g20_s0; 107*f4a2713aSLionel Sambuc struct g20_s1 { 108*f4a2713aSLionel Sambuc struct g20_s0 *f0, **f1; 109*f4a2713aSLionel Sambuc }; 110*f4a2713aSLionel Sambuc void *g20(void) { 111*f4a2713aSLionel Sambuc static struct g20_s1 l0 = { ((void*) 0), &l0.f0 }; 112*f4a2713aSLionel Sambuc return l0.f1; 113*f4a2713aSLionel Sambuc } 114*f4a2713aSLionel Sambuc 115*f4a2713aSLionel Sambuc // PR4108 116*f4a2713aSLionel Sambuc struct g21 {int g21;}; 117*f4a2713aSLionel Sambuc const struct g21 g21 = (struct g21){1}; 118*f4a2713aSLionel Sambuc 119*f4a2713aSLionel Sambuc // PR5474 120*f4a2713aSLionel Sambuc struct g22 {int x;} __attribute((packed)); 121*f4a2713aSLionel Sambuc struct g23 {char a; short b; char c; struct g22 d;}; 122*f4a2713aSLionel Sambuc struct g23 g24 = {1,2,3,4}; 123*f4a2713aSLionel Sambuc 124*f4a2713aSLionel Sambuc // CHECK: @g25.g26 = internal global i8* getelementptr inbounds ([4 x i8]* @__func__.g25, i32 0, i32 0) 125*f4a2713aSLionel Sambuc // CHECK: @__func__.g25 = private unnamed_addr constant [4 x i8] c"g25\00" 126*f4a2713aSLionel Sambuc int g25() { 127*f4a2713aSLionel Sambuc static const char *g26 = __func__; 128*f4a2713aSLionel Sambuc return *g26; 129*f4a2713aSLionel Sambuc } 130*f4a2713aSLionel Sambuc 131*f4a2713aSLionel Sambuc // CHECK: @g27.x = internal global i8* bitcast (i8** @g27.x to i8*), align 4 132*f4a2713aSLionel Sambuc void g27() { // PR8073 133*f4a2713aSLionel Sambuc static void *x = &x; 134*f4a2713aSLionel Sambuc } 135*f4a2713aSLionel Sambuc 136*f4a2713aSLionel Sambuc void g28() { 137*f4a2713aSLionel Sambuc typedef long long v1i64 __attribute((vector_size(8))); 138*f4a2713aSLionel Sambuc typedef short v12i16 __attribute((vector_size(24))); 139*f4a2713aSLionel Sambuc typedef long double v2f80 __attribute((vector_size(24))); 140*f4a2713aSLionel Sambuc // CHECK: @g28.a = internal global <1 x i64> <i64 10> 141*f4a2713aSLionel Sambuc // CHECK: @g28.b = internal global <12 x i16> <i16 0, i16 0, i16 0, i16 -32768, i16 16383, i16 0, i16 0, i16 0, i16 0, i16 -32768, i16 16384, i16 0> 142*f4a2713aSLionel Sambuc // CHECK: @g28.c = internal global <2 x x86_fp80> <x86_fp80 0xK3FFF8000000000000000, x86_fp80 0xK40008000000000000000>, align 32 143*f4a2713aSLionel Sambuc static v1i64 a = (v1i64)10LL; 144*f4a2713aSLionel Sambuc static v12i16 b = (v2f80){1,2}; 145*f4a2713aSLionel Sambuc static v2f80 c = (v12i16){0,0,0,-32768,16383,0,0,0,0,-32768,16384,0}; 146*f4a2713aSLionel Sambuc } 147*f4a2713aSLionel Sambuc 148*f4a2713aSLionel Sambuc // PR13643 149*f4a2713aSLionel Sambuc void g29() { 150*f4a2713aSLionel Sambuc typedef char DCC_PASSWD[2]; 151*f4a2713aSLionel Sambuc typedef struct 152*f4a2713aSLionel Sambuc { 153*f4a2713aSLionel Sambuc DCC_PASSWD passwd; 154*f4a2713aSLionel Sambuc } DCC_SRVR_NM; 155*f4a2713aSLionel Sambuc // CHECK: @g29.a = internal global %struct.DCC_SRVR_NM { [2 x i8] c"@\00" }, align 1 156*f4a2713aSLionel Sambuc // CHECK: @g29.b = internal global [1 x i32] [i32 ptrtoint ([5 x i8]* @.str to i32)], align 4 157*f4a2713aSLionel Sambuc // CHECK: @g29.c = internal global [1 x i32] [i32 97], align 4 158*f4a2713aSLionel Sambuc static DCC_SRVR_NM a = { {"@"} }; 159*f4a2713aSLionel Sambuc static int b[1] = { "asdf" }; // expected-warning {{incompatible pointer to integer conversion initializing 'int' with an expression of type 'char [5]'}} 160*f4a2713aSLionel Sambuc static int c[1] = { L"a" }; 161*f4a2713aSLionel Sambuc } 162