blob: 655f5d721c7f8df2772a1c1aafb69c6a3e81961d [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O3 -march=z14 -mzarch --save-temps" } */
/* { dg-do run { target { s390_z14_hw } } } */
#include <assert.h>
#include <stdint.h>
__attribute__ ((noipa)) static long double
long_double_from_u32 (uint32_t x)
{
return x;
}
/* { dg-final { scan-assembler-times {\n\tcxlfbr\t} 1 } } */
int
main (void)
{
assert (long_double_from_u32 (42) == 42.L);
assert (long_double_from_u32 (-42) == 4294967254.L);
}