Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
931110-2.c
blob: 586615b180c03d743c38efa97d9cc8f374c39618 [
file
] [
log
] [
blame
]
main
()
{
static
int
a
[]
=
{
3
,
4
};
register
int
*
b
;
int
c
;
b
=
a
;
c
=
*
b
++
%
8
;
if
(
c
!=
3
)
abort
();
exit
(
0
);
}