annotate gcc/testsuite/gcc.dg/20040203-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/13994; bug_cond2 was rejected on gcc up to version 3.4.x */
kono
parents:
diff changeset
2 /* { dg-do compile }*/
kono
parents:
diff changeset
3 /* { dg-options "-std=gnu89" }*/
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 struct s { char c[1]; };
kono
parents:
diff changeset
6 struct s a;
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 int bug_if(void) { if (a.c) return 1; else return 0; }
kono
parents:
diff changeset
9 int bug_while(void) { while (a.c); }
kono
parents:
diff changeset
10 int bug_do_while(void) { do ; while (a.c); }
kono
parents:
diff changeset
11 int bug_for(void) { for ( ; a.c; ) ; }
kono
parents:
diff changeset
12 int bug_or(void) { return (a.c || 1); }
kono
parents:
diff changeset
13 int bug_and(void) { return (a.c && 1); }
kono
parents:
diff changeset
14 int bug_cond(void) { return (a.c ? 1 : 0); }
kono
parents:
diff changeset
15 char *bug_cond2(void) { return (a.c ? : 0); }
kono
parents:
diff changeset
16 int bug_not(void) { return !a.c; }
kono
parents:
diff changeset
17 int bug_bool(void) { return (_Bool) a.c; }