blob: 01a1588461cd863f60e319ce6fb402a967d4ba89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/*===- test/Regression/Transforms/Scalar/DecomposeMultiDimRefs.cpp -----=*
*
* This is a regression test for the DecomposeArrayRefs pass.
* It tests several different combinations of structure and
* array indexes in individual references. It does *not* yet
* sufficiently test type-unsafe operations like treating a
* 1-D array as a 2-D or 3-D array. (multidim.ll in this directory
* tests a simple case of that though.)
*===---------------------------------------------------------------------===*/
#include <stdlib.h>
#include <stdio.h>
typedef struct Flat_struct {
char c;
float x;
} Flat_t;
typedef struct Mixed_struct {
int N;
double A[10];
double B[10][10];
Flat_t F[10];
} Mixed_t;
double
AddMixed(Mixed_t* M)
{
double sum = 0;
int i, j;
for (i=0; i < 10; ++i)
sum += M->A[i];
for (i=0; i < 10; ++i)
for (j=0; j < 10; ++j)
sum += M->B[i][j];
for (i=0; i < 10; ++i) {
sum += (double) M->F[i].c;
sum += M->F[i].x;
}
return sum;
}
void
InitializeMixed(Mixed_t* M, int base)
{
int i, j;
for (i=0; i < 10; ++i)
M->A[i] = i + base;
for (i=0; i < 10; ++i)
for (j=0; j < 10; ++j)
M->B[i][j] = i*10 + j + base;
for (i=0; i < 10; ++i) {
M->F[i].c = 'Q';
M->F[i].x = i / 10 + base;
}
}
int
main(int argc, char** argv)
{
Mixed_t M;
Mixed_t MA[4];
int i;
InitializeMixed(&M, 100);
printf("Sum(M) = %.2f\n", AddMixed(&M));
for (i=0; i < 4; i++) {
InitializeMixed(&MA[i], 100 * (i+2));
printf("Sum(MA[%d]) = %.2f\n", i, AddMixed(&MA[i]));
}
return 0;
}
|