blob: 7181a866e6775b8591249f4a64dfbd44ea643ab4 (
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
83
84
85
|
cat <<'EOF' > expected
42
EOF
test_diff <<'EOF'
void* calloc();
int printf();
struct S {
int x;
};
typedef struct S S;
int main() {
S* s = calloc(1, sizeof(S));
s->x = 42;
printf("%d\n", s->x);
return 0;
}
EOF
cat <<'EOF' > expected
4
EOF
test_diff <<'EOF'
struct S0;
typedef struct S0 S0;
struct S1 {
int x;
};
struct S2 {
int x;
};
struct S3 {
int x;
};
struct S4 {
int x;
};
struct S0 {
int x;
};
int printf(const char*, ...);
int main() {
printf("%zu\n", sizeof(S0));
}
EOF
cat <<'EOF' > expected
8
4
4
EOF
test_diff <<'EOF'
int printf();
typedef struct {
int x;
int y;
} S;
typedef union {
int a;
char b;
} U;
typedef enum {
RED,
GREEN,
BLUE
} E;
int main() {
printf("%zu\n", sizeof(S));
printf("%zu\n", sizeof(U));
printf("%zu\n", sizeof(E));
}
EOF
|