annotate gcc/testsuite/gcc.dg/c90-const-expr-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 /* Test for constraints on constant expressions. In C90 it is clear that
kono
parents:
diff changeset
2 certain constructs are not permitted in unevaluated parts of an
kono
parents:
diff changeset
3 expression (except in sizeof); in C99 it might fall within implementation
kono
parents:
diff changeset
4 latitude.
kono
parents:
diff changeset
5 */
kono
parents:
diff changeset
6 /* Origin: Joseph Myers <jsm28@cam.ac.uk>; inspired by
kono
parents:
diff changeset
7 http://deja.com/getdoc.xp?AN=524271595&fmt=text by Peter Seebach.
kono
parents:
diff changeset
8 */
kono
parents:
diff changeset
9 /* { dg-do compile } */
kono
parents:
diff changeset
10 /* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 extern int bar (void);
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 void
kono
parents:
diff changeset
15 foo (void)
kono
parents:
diff changeset
16 {
kono
parents:
diff changeset
17 int i;
kono
parents:
diff changeset
18 static int j = (1 ? 0 : (i = 2)); /* { dg-error "initial" "assignment" } */
kono
parents:
diff changeset
19 static int k = (1 ? 0 : ++i); /* { dg-error "initial" "increment" } */
kono
parents:
diff changeset
20 static int l = (1 ? 0 : --i); /* { dg-error "initial" "decrement" } */
kono
parents:
diff changeset
21 static int m = (1 ? 0 : bar ()); /* { dg-error "initial" "function call" } */
kono
parents:
diff changeset
22 static int n = (1 ? 0 : (2, 3)); /* { dg-error "initial" "comma" } */
kono
parents:
diff changeset
23 }