annotate gcc/testsuite/gcc.c-torture/compile/pr65595.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 extern void *memcpy(void *, const void *, unsigned long);
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