Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr104280.c
blob: c5a1d9bcd27b4adef0ddb2ec1f83cefa170fbeeb [
file
] [
log
] [
blame
]
/* PR tree-optimization/104280 */
/* { dg-do run } */
int
foo
(
unsigned
b
,
int
c
)
{
return
b
/
c
;
}
int
main
()
{
if
(
foo
(
1
,
2
)
!=
0
)
__builtin_abort
();
return
0
;
}