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
PR tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920429-1.c
blob
f37bf68bdd408221bc9ea674d36c68da6972baba
1
typedef
unsigned char
t
;
int
i
,
j
;
2
t
*
f
(
t
*
p
){
t c
;
c
=*
p
++;
i
=((
c
&
2
)?
1
:
0
);
j
=(
c
&
7
)+
1
;
return
p
;}
3
main
(){
t
*
p0
=
"ab"
,*
p1
;
p1
=
f
(
p0
);
if
(
p0
+
1
!=
p1
)
abort
();
exit
(
0
);}