Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr101335.c
blob: 45a399fe7640d30030ba70b71fd9cbedc04c1c0a [
file
] [
log
] [
blame
]
unsigned
a
=
0xFFFFFFFF
;
int
b
;
int
main
()
{
int
c
=
~
a
;
unsigned
d
=
c
-
10
;
if
(
d
>
c
)
c
=
20
;
b
=
-(
c
|
0
);
if
(
b
>
-
8
)
__builtin_abort
();
return
0
;
}