blob: 2065e3364bcdd50c083d175a7d76e19540c9aabd [file] [log] [blame]
Chris Lattner0eea9f92010-04-12 21:10:05 +00001// RUN: %clang_cc1 -w -emit-llvm < %s | FileCheck %s
Chris Lattnerff933b72009-12-05 06:49:57 +00002
Douglas Gregor4707b9a2011-03-06 23:28:21 +00003// CHECK: @test1.x = internal constant [12 x i32] [i32 1
Eric Christopher736a9c22011-08-24 00:33:55 +00004// CHECK: @test2.x = private unnamed_addr constant [13 x i32] [i32 1,
Chris Lattner9cbe4f02011-07-09 17:41:47 +00005// CHECK: @test5w = global { i32, [4 x i8] } { i32 2, [4 x i8] undef }
6// CHECK: @test5y = global { double } { double 7.300000e+0{{[0]*}}1 }
Chris Lattner761acc12009-12-05 08:22:11 +00007
Eric Christopher736a9c22011-08-24 00:33:55 +00008// CHECK: @test6.x = private unnamed_addr constant %struct.SelectDest { i8 1, i8 2, i32 3, i32 0 }
Chris Lattner8ce9e452010-04-13 18:16:19 +00009
10// CHECK: @test7 = global [2 x %struct.test7s] [%struct.test7s { i32 1, i32 2 }, %struct.test7s { i32 4, i32 0 }]
11
Chris Lattnerff933b72009-12-05 06:49:57 +000012void test1() {
13 // This should codegen as a "@test1.x" global.
14 const int x[] = { 1, 2, 3, 4, 6, 8, 9, 10, 123, 231, 123,23 };
15 foo(x);
16
17// CHECK: @test1()
18// CHECK: {{call.*@foo.*@test1.x}}
19}
Chris Lattner761acc12009-12-05 08:22:11 +000020
21
22// rdar://7346691
23void test2() {
24 // This should codegen as a "@test2.x" global + memcpy.
25 int x[] = { 1, 2, 3, 4, 6, 8, 9, 10, 123, 231, 123,23, 24 };
26 foo(x);
Eric Christopher736a9c22011-08-24 00:33:55 +000027
Chris Lattner761acc12009-12-05 08:22:11 +000028 // CHECK: @test2()
29 // CHECK: %x = alloca [13 x i32]
30 // CHECK: call void @llvm.memcpy
31 // CHECK: call{{.*}}@foo{{.*}}i32* %
32}
33
34
35void test3() {
Chris Lattner7c176fa2009-12-05 08:33:21 +000036 // This should codegen as a memset.
Chris Lattner761acc12009-12-05 08:22:11 +000037 int x[100] = { 0 };
38 foo(x);
Eric Christopher736a9c22011-08-24 00:33:55 +000039
Chris Lattner761acc12009-12-05 08:22:11 +000040 // CHECK: @test3()
41 // CHECK: %x = alloca [100 x i32]
42 // CHECK: call void @llvm.memset
43}
44
Chris Lattner36a2be12009-12-05 08:30:04 +000045void test4(void) {
46 char a[10] = "asdf";
47 char b[10] = { "asdf" };
48 // CHECK: @test4()
49 // CHECK: %a = alloca [10 x i8]
50 // CHECK: %b = alloca [10 x i8]
51 // CHECK: call void @llvm.memcpy
52 // CHECK: call void @llvm.memcpy
53}
54
55
56union test5u { int i; double d; };
57
58void test5() {
59 union test5u ola = (union test5u) 351;
60 union test5u olb = (union test5u) 1.0;
61}
62
63union test5u test5w = (union test5u)2;
64union test5u test5y = (union test5u)73.0;
65
Chris Lattner0eea9f92010-04-12 21:10:05 +000066
67
68// PR6660 - sqlite miscompile
69struct SelectDest {
70 unsigned char eDest;
71 unsigned char affinity;
72 int iParm;
73 int iMem;
74};
75
76void test6() {
77 struct SelectDest x = {1, 2, 3};
78 test6f(&x);
79}
Chris Lattner8ce9e452010-04-13 18:16:19 +000080
81// rdar://7657600
82struct test7s { int a; int b; } test7[] = {
83 {1, 2},
84 {4},
85};
86
Chris Lattnerd39a0d62010-04-16 21:02:32 +000087// rdar://7872531
88#pragma pack(push, 2)
89struct test8s { int f0; char f1; } test8g = {};
90
91
Chris Lattnerbcaedae2010-06-30 19:14:05 +000092// PR7519
93
94struct S {
95 void (*x) (struct S *);
96};
97
98extern struct S *global_dc;
99void cp_diagnostic_starter(struct S *);
100
101void init_error(void) {
102 global_dc->x = cp_diagnostic_starter;
103}
104
Chris Lattnera9fa8582010-07-01 06:20:47 +0000105
106
107// rdar://8147692 - ABI crash in recursive struct-through-function-pointer.
108typedef struct {
109 int x5a;
110} x5;
111
112typedef struct x2 *x0;
113typedef long (*x1)(x0 x0a, x5 x6);
114struct x2 {
115 x1 x4;
116};
117long x3(x0 x0a, x5 a) {
118 return x0a->x4(x0a, a);
119}