annotate gcc/testsuite/gcc.dg/cpp/mi2c.h @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900 (2017-10-27)
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Test for overly eager multiple include optimization.
kono
parents:
diff changeset
2 Problem distilled from glibc 2.0.7's time.h, sys/time.h, timebits.h.
kono
parents:
diff changeset
3 Problem noted by Tom Tromey <tromey@cygnus.com>. */
kono
parents:
diff changeset
4 #ifdef need_x
kono
parents:
diff changeset
5 #undef need_x
kono
parents:
diff changeset
6 #ifndef have_x
kono
parents:
diff changeset
7 #define have_x
kono
parents:
diff changeset
8 extern int x;
kono
parents:
diff changeset
9 #endif
kono
parents:
diff changeset
10 #endif
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 #ifndef t_h
kono
parents:
diff changeset
13 #define t_h
kono
parents:
diff changeset
14 extern int y;
kono
parents:
diff changeset
15 #endif