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
Revert DECL_USER_ALIGN part of r241959
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr52808.c
blob
8a33d08d860877f3612bf93a5173244b610e35c4
1
/* { dg-do compile } */
2
/* { dg-options "-O -ftracer" } */
3
4
int
**
fn1
()
__attribute__
((
__const__
));
5
int
main
()
6
{
7
int
i
;
8
i
=
0
;
9
for
(;;
i
++)
10
if
(*
fn1
()[
i
] && !
'a'
<=
0
&&
i
<=
'z'
|| *
fn1
()[
0
] &&
'a'
<=
'z'
)
11
return
0
;
12
}