blob: 1f5078bfad3bc300f91f62a0b98883a0afb39203 (
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
|
struct s {
int a, b, c;
};
struct s s_init_first(int a)
{
struct s s = { .a = a, };
return s;
}
struct s s_init_third(int a)
{
struct s s = { .c = a, };
return s;
}
/*
* check-name: struct implicit init zero needed
* check-command: test-linearize -Wno-decl $file
*
* check-output-start
s_init_first:
.L0:
<entry-point>
store.96 $0 -> 0[s]
store.32 %arg1 -> 0[s]
load.96 %r2 <- 0[s]
ret.96 %r2
s_init_third:
.L2:
<entry-point>
store.96 $0 -> 0[s]
store.32 %arg1 -> 8[s]
load.96 %r5 <- 0[s]
ret.96 %r5
* check-output-end
*/
|