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
/
951204-1.c
blob
c4d585b6b9ed8844b39e4ade75209adbbea9a108
1
f
(
char
*
x
)
2
{
3
*
x
=
'x'
;
4
}
5
6
main
()
7
{
8
int
i
;
9
char
x
=
'\0'
;
10
11
for
(
i
=
0
;
i
<
100
; ++
i
)
12
{
13
f
(&
x
);
14
if
(*(
const char
*) &
x
!=
'x'
)
15
abort
();
16
}
17
exit
(
0
);
18
}