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
/
pr22098-2.c
blob
249647dc5705d4841b83fab9ff0e9e6de24048ff
1
extern
void
abort
(
void
);
2
extern
void
exit
(
int
);
3
typedef
__SIZE_TYPE__
size_t
;
4
int
5
main
(
void
)
6
{
7
int
a
=
0
;
8
int
*
p
;
9
size_t
b
;
10
b
= (
size_t
)(
p
= &(
int
[]){
0
,
1
,
2
}[
1
]);
11
if
(*
p
!=
1
|| *(
int
*)
b
!=
1
)
12
abort
();
13
exit
(
0
);
14
}