blob: 30fc75524658f0fb0e39462ea8453308a42b4dfc [file] [log] [blame]
Daniel Dunbar8d7d6e92009-02-21 23:45:41 +00001// RUN: clang -arch i386 -verify -emit-llvm -o %t %s &&
Eli Friedmancca196b2008-02-21 18:07:36 +00002
3#include <stdint.h>
4
5// Brace-enclosed string array initializers
6char a[] = { "asdf" };
7
8// Double-implicit-conversions of array/functions (not legal C, but
9// clang accepts it for gcc compat).
Daniel Dunbarda8bf142008-08-05 06:30:41 +000010intptr_t b = a; // expected-warning {{incompatible pointer to integer conversion}}
Eli Friedmancca196b2008-02-21 18:07:36 +000011int c();
12void *d = c;
Daniel Dunbarda8bf142008-08-05 06:30:41 +000013intptr_t e = c; // expected-warning {{incompatible pointer to integer conversion}}
Eli Friedmanbc5ed6e2008-05-29 11:22:45 +000014
15int f, *g = __extension__ &f, *h = (1 != 1) ? &f : &f;
Anders Carlssoncd761cd2008-11-22 06:42:54 +000016
17union s2 {
18 struct {
19 struct { } *f0;
20 } f0;
21};
22
23int g0 = (int)(&(((union s2 *) 0)->f0.f0) - 0);
Daniel Dunbara5fd07b2009-01-28 22:24:07 +000024
Chris Lattner6f877cd2009-03-01 00:59:19 +000025// RUN: grep '@g1x = global %. { double 1.000000e+00, double 0.000000e+00 }' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000026_Complex double g1x = 1.0f;
Chris Lattner6f877cd2009-03-01 00:59:19 +000027// RUN: grep '@g1y = global %. { double 0.000000e+00, double 1.000000e+00 }' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000028_Complex double g1y = 1.0fi;
Chris Lattner6f877cd2009-03-01 00:59:19 +000029// RUN: grep '@g1 = global %. { i8 1, i8 10 }' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000030_Complex char g1 = (char) 1 + (char) 10 * 1i;
Mike Stump20733cd2009-02-22 13:27:11 +000031// RUN: grep '@g2 = global .struct.__block_descriptor { i32 1, i32 10 }' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000032_Complex int g2 = 1 + 10i;
Chris Lattner6f877cd2009-03-01 00:59:19 +000033// RUN: grep '@g3 = global %. { float 1.000000e+00, float 1.000000e+01 }' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000034_Complex float g3 = 1.0 + 10.0i;
Chris Lattner6f877cd2009-03-01 00:59:19 +000035// RUN: grep '@g4 = global %. { double 1.000000e+00, double 1.000000e+01 }' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000036_Complex double g4 = 1.0 + 10.0i;
Mike Stump20733cd2009-02-22 13:27:11 +000037// RUN: grep '@g5 = global .struct.__block_descriptor zeroinitializer' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000038_Complex int g5 = (2 + 3i) == (5 + 7i);
Chris Lattner6f877cd2009-03-01 00:59:19 +000039// RUN: grep '@g6 = global %. { double -1.100000e+01, double 2.900000e+01 }' %t &&
Daniel Dunbar4087e242009-01-29 06:43:41 +000040_Complex double g6 = (2.0 + 3.0i) * (5.0 + 7.0i);
41// RUN: grep '@g7 = global i32 1' %t &&
42int g7 = (2 + 3i) * (5 + 7i) == (-11 + 29i);
43// RUN: grep '@g8 = global i32 1' %t &&
44int g8 = (2.0 + 3.0i) * (5.0 + 7.0i) == (-11.0 + 29.0i);
45// RUN: grep '@g9 = global i32 0' %t &&
46int g9 = (2 + 3i) * (5 + 7i) != (-11 + 29i);
47// RUN: grep '@g10 = global i32 0' %t &&
48int g10 = (2.0 + 3.0i) * (5.0 + 7.0i) != (-11.0 + 29.0i);
49
50
Daniel Dunbardd211642009-02-19 22:24:01 +000051// Global references
52// RUN: grep '@g11.l0 = internal global i32 ptrtoint (i32 ()\* @g11 to i32)' %t &&
53long g11() {
54 static long l0 = (long) g11;
55 return l0;
56}
57
58// RUN: grep '@g12 = global i32 ptrtoint (i8\* @g12_tmp to i32)' %t &&
59static char g12_tmp;
60long g12 = (long) &g12_tmp;
61
62// RUN: grep '@g13 = global \[1 x .struct.g13_s0\] \[.struct.g13_s0 <{ i32 ptrtoint (i8\* @g12_tmp to i32) }>\]' %t &&
63struct g13_s0 {
64 long a;
65};
66struct g13_s0 g13[] = {
67 { (long) &g12_tmp }
68};
69
70// RUN: grep '@g14 = global i8\* inttoptr (i64 100 to i8\*)' %t &&
71void *g14 = (void*) 100;
72
73// RUN: grep '@g15 = global i32 -1' %t &&
74int g15 = (int) (char) ((void*) 0 + 255);
75
76// RUN: grep '@g16 = global i64 4294967295' %t &&
77long long g16 = (long long) ((void*) 0xFFFFFFFF);
78
Daniel Dunbar69ab26a2009-02-20 18:22:23 +000079// RUN: grep '@g17 = global i32\* @g15' %t &&
80int *g17 = (int *) ((long) &g15);
81
Daniel Dunbard01b6692009-02-24 18:41:57 +000082// RUN: grep '@g18.p = internal global \[1 x i32\*\] \[i32\* @g19\]' %t &&
Daniel Dunbard01b6692009-02-24 18:41:57 +000083void g18(void) {
84 extern int g19;
85 static int *p[] = { &g19 };
86}
87
Daniel Dunbare5731f82009-02-25 20:08:33 +000088// RUN: grep '@g20.l0 = internal global .struct.g20_s1 <{ .struct.g20_s0\* null, .struct.g20_s0\*\* getelementptr (.struct.g20_s1\* @g20.l0, i32 0, i32 0) }>' %t &&
89
90struct g20_s0;
91struct g20_s1 {
92 struct g20_s0 *f0, **f1;
93};
94void *g20(void) {
95 static struct g20_s1 l0 = { ((void*) 0), &l0.f0 };
96 return l0.f1;
97}
98
Daniel Dunbar4087e242009-01-29 06:43:41 +000099// RUN: true