Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr111331-3.c
blob: 213d9bdd539d9a869918a64cf6f391e5c0d54129 [
file
] [
log
] [
blame
]
int
a
;
int
b
;
int
main
()
{
int
d
=
b
+
30
;
{
int
t
;
t
=
d
<
29
?
29
:
((
d
>
28
)
?
28
:
d
);
a
=
t
;
}
volatile
int
t
=
a
;
if
(
a
!=
28
)
__builtin_abort
();
return
0
;
}