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

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* This testcase resulted in a 'unrecognizeable insn' on powerpc-linux-gnu
kono
parents:
diff changeset
2 because of a missing trunc_int_for_mode in simplify_and_const_int. */
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 struct display {
kono
parents:
diff changeset
5 struct disphist *hstent;
kono
parents:
diff changeset
6 int pid;
kono
parents:
diff changeset
7 int status;
kono
parents:
diff changeset
8 };
kono
parents:
diff changeset
9
kono
parents:
diff changeset
10 struct disphist {
kono
parents:
diff changeset
11 struct disphist *next;
kono
parents:
diff changeset
12 char *name;
kono
parents:
diff changeset
13 int startTries;
kono
parents:
diff changeset
14 unsigned rLogin:2,
kono
parents:
diff changeset
15 sd_how:2,
kono
parents:
diff changeset
16 sd_when:2,
kono
parents:
diff changeset
17 lock:1,
kono
parents:
diff changeset
18 goodExit:1;
kono
parents:
diff changeset
19 char *nuser, *npass, **nargs;
kono
parents:
diff changeset
20 };
kono
parents:
diff changeset
21
kono
parents:
diff changeset
22 void
kono
parents:
diff changeset
23 StartDisplay (struct display *d)
kono
parents:
diff changeset
24 {
kono
parents:
diff changeset
25 d->pid = 0;
kono
parents:
diff changeset
26 d->status = 0;
kono
parents:
diff changeset
27 d->hstent->lock = d->hstent->rLogin = d->hstent->goodExit =
kono
parents:
diff changeset
28 d->hstent->sd_how = d->hstent->sd_when = 0;
kono
parents:
diff changeset
29 }
kono
parents:
diff changeset
30