File: struct-init-partial.c

package info (click to toggle)
sparse 0.6.4-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,868 kB
  • sloc: ansic: 46,050; sh: 614; python: 301; perl: 293; makefile: 279
file content (41 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (4)
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
 */