Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
gcc
/
testsuite
/
c-c++-common
/
ubsan
/
pr64344-2.c
blob: 9d1eafd7abeac5032ba6778da547a477e573ce22 [
file
]
/* PR sanitizer/64344 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=float-cast-overflow" } */
int
foo
(
void
)
{
static
const
int
a
=
0.5
;
static
const
int
b
=
(
int
)
13.5
+
1
;
return
a
+
b
;
}