annotate gcc/testsuite/gcc.c-torture/compile/pr65595.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
1 extern void *memcpy(void *, const void *, __SIZE_TYPE__);
111
kono
parents:
diff changeset
2 struct in6_addr {
kono
parents:
diff changeset
3 struct {
kono
parents:
diff changeset
4 int u6_addr32[4];
kono
parents:
diff changeset
5 };
kono
parents:
diff changeset
6 };
kono
parents:
diff changeset
7 struct foo {
kono
parents:
diff changeset
8 struct in6_addr daddr;
kono
parents:
diff changeset
9 struct in6_addr saddr;
kono
parents:
diff changeset
10 } a;
kono
parents:
diff changeset
11 extern void ip6_route_output(struct foo, int);
kono
parents:
diff changeset
12 int b;
kono
parents:
diff changeset
13 static void find_route_ipv6(struct in6_addr *p1) {
kono
parents:
diff changeset
14 if (p1)
kono
parents:
diff changeset
15 memcpy(0, p1, sizeof(struct in6_addr));
kono
parents:
diff changeset
16 ip6_route_output(a, b);
kono
parents:
diff changeset
17 }
kono
parents:
diff changeset
18 void cxgbi_ep_connect() { find_route_ipv6(0); }
kono
parents:
diff changeset
19