blob: f4489841c28ac7020be309a780adef975e281dba [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_volatile_from_i64 (int64_t x)
{
static volatile long double y;
y = x;
return y;
}
/* { dg-final { scan-assembler-times {\n\tcxgbr\t} 1 } } */
int
main (void)
{
assert (long_double_volatile_from_i64 (42) == 42.L);
assert (long_double_volatile_from_i64 (-42) == -42.L);
}