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
Warn pointer to signed integer cast for ilp32
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr52808.c
blob
b731cb40133ffa899c725bacbcfc98e185d0b951
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
;
12
}