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