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