Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wstrict-aliasing-5.C
blob: 84c493c435f9d9493d623f077bb2ca578ce967f6 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-Wstrict-aliasing=2 -O2" } */
typedef
unsigned
uint32_t
__attribute__
((
mode
(
__SI__
)));
float
foo
()
{
uint32_t
MASK
=
0x80000000
;
return
(
float
&)
MASK
;
/* { dg-warning "strict-aliasing" } */
}