repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930725-1.c
blob
3bd738ca08a92438a70bf5d7ab61436b75ae0092
1
int
v
;
2
3
char
*
4
g
()
5
{
6
return
""
;
7
}
8
9
char
*
10
f
()
11
{
12
return
(
v
==
0
?
g
() :
"abc"
);
13
}
14
15
main
()
16
{
17
v
=
1
;
18
if
(!
strcmp
(
f
(),
"abc"
))
19
exit
(
0
);
20
abort
();
21
}