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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69391-2.c
blob
7d2faae50d8842c1aef6e1f7f2498314255252ed
1
/* { dg-do run } */
2
/* { dg-additional-options "-ftrack-macro-expansion=1" } */
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
}