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 libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
id-pr43464-1.c
blob
8e6ac209e7cbb0b802c2d8eebccb048b5028f4d7
1
typedef
struct
regnode
2
{
3
char
flags
;
4
}
regnode
;
5
extern
const unsigned char
A
[];
6
int
bar
(
regnode
*);
7
8
char
*
foo
(
regnode
*
c
,
char
*
s
,
int
norun
)
9
{
10
int
uskip
;
11
while
(
s
+ (
uskip
=
A
[*
s
]))
12
{
13
if
((
c
->
flags
||
bar
(
c
)) &&
norun
)
14
goto
got_it
;
15
s
+=
uskip
;
16
}
17
got_it
:
18
return
s
;
19
}