annotate gcc/testsuite/gcc.dg/pr69391-1.c @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-do run } */
kono
parents:
diff changeset
2 /* { dg-additional-options "-ftrack-macro-expansion=0" } */
kono
parents:
diff changeset
3 #define STR_I(X) #X
kono
parents:
diff changeset
4 #define STR(X) STR_I(X)
kono
parents:
diff changeset
5 #define LINE STR(__LINE__) STR(__LINE__)
kono
parents:
diff changeset
6 int main()
kono
parents:
diff changeset
7 {
kono
parents:
diff changeset
8 const char *s = LINE;
kono
parents:
diff changeset
9 if (s[0] != '8' || s[1] != '8')
kono
parents:
diff changeset
10 __builtin_abort ();
kono
parents:
diff changeset
11 return 0;
kono
parents:
diff changeset
12 }