Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr78305.c
blob: 36d3620179e6860b4574433447374e9120b2d0f8 [
file
] [
log
] [
blame
]
/* { dg-do run } */
/* { dg-require-effective-target int32plus } */
int
main
()
{
int
a
=
2
;
int
b
=
1
;
int
t
=
-
1
*
(
-
0x40000000
*
a
/
(
-
0x20000000
+
b
)
)
/
-
1
;
if
(
t
!=
4
)
__builtin_abort
();
return
0
;
}