repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69391-1.c
blob
15e49dc657d62b8f4a7b6bc503f5650fcfc4354e
1
/* { dg-do run } */
2
/* { dg-additional-options "-ftrack-macro-expansion=0" } */
3
#define STR_I(X) #X
4
#define STR(X) STR_I(X)
5
#define LINE STR(__LINE__) STR(__LINE__)
6
int
main
()
7
{
8
const char
*
s
=
LINE
;
9
if
(
s
[
0
] !=
'8'
||
s
[
1
] !=
'8'
)
10
__builtin_abort
();
11
return
0
;
12
}