blob: 4b8447eac499c208e006fa5a15305ccd5a888db8 [file] [log] [blame]
/* { dg-do compile } */
#include <stdio.h>
#include <string.h>
inline int
bci (const float &source)
{
int dest;
memcpy (&dest, &source, sizeof (dest));
return dest;
}
inline float
bcf (const int &source)
{
float dest;
memcpy (&dest, &source, sizeof (dest));
return dest;
}
float
Foo ()
{
const int foo = bci (0.0f);
int bar = foo;
const int baz = foo & 1;
if (!baz && (foo & 2))
bar = 0;
return bcf (bar);
}
int
main ()
{
printf ("Foo() = %f\n", Foo());
return 0;
}