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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
950929-1.c
blob
a35cd6a153e3bfda633d0261306ac2964bf02958
1
int
f
(
char
*
p
) { }
2
3
main
()
4
{
5
char
c
;
6
char
c2
;
7
int
i
=
0
;
8
char
*
pc
= &
c
;
9
char
*
pc2
= &
c2
;
10
int
*
pi
= &
i
;
11
12
*
pc2
=
1
;
13
*
pi
=
1
;
14
*
pc2
&= *
pi
;
15
f
(
pc2
);
16
*
pc2
=
1
;
17
*
pc2
&= *
pi
;
18
if
(*
pc2
!=
1
)
19
abort
();
20
exit
(
0
);
21
}