annotate gcc/testsuite/gcc.dg/20031201-1.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
111
kono
parents:
diff changeset
1 /* PR optimization/12628 */
kono
parents:
diff changeset
2 /* The following test used to ICE in init_alias_analysis because the
kono
parents:
diff changeset
3 given command line options meant that reg_scan wasn't (re)run before
kono
parents:
diff changeset
4 the jump bypassing pass. */
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 /* { dg-do compile } */
kono
parents:
diff changeset
7 /* { dg-options "-O2 -fno-expensive-optimizations" } */
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 int outbuf[100];
kono
parents:
diff changeset
10 int outcnt;
kono
parents:
diff changeset
11 int bi_buf;
kono
parents:
diff changeset
12 void send_bits(void)
kono
parents:
diff changeset
13 {
kono
parents:
diff changeset
14 bi_buf = 0;
kono
parents:
diff changeset
15 outbuf[outcnt++] = 8;
kono
parents:
diff changeset
16 outbuf[outcnt++] = 8;
kono
parents:
diff changeset
17 if (outcnt)
kono
parents:
diff changeset
18 bi_buf = 1;
kono
parents:
diff changeset
19 }
kono
parents:
diff changeset
20