Make UNSPEC/UNSPECV constants use the enum; Fix 48192; Add test case for 48053
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr48053-3.c
blob399b3d3ea36a21e20489fe997827bd967ef4042f
1 /* { dg-do compile } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } { "*" } { "" } } */
3 /* { dg-require-effective-target powerpc_vsx_ok } */
4 /* { dg-options "-O3 -mcpu=power7" } */
6 /* Cut down example from s_scalbnl that aborted on 32-bit when the fix for
7 48053 went in to allow creating DImode 0's in VSX registers. */
9 typedef union
11 long double value;
12 struct
14 unsigned long long msw;
15 unsigned long long lsw;
16 } parts64;
17 struct
19 unsigned int w0, w1, w2, w3;
20 } parts32;
21 } ieee854_long_double_shape_type;
23 static const long double twolm54 = 5.55111512312578270212e-17;
25 long double foo (long double x, int n)
27 long long k, hx, lx;
28 ieee854_long_double_shape_type qw_u;
30 qw_u.value = x;
31 hx = qw_u.parts64.msw;
32 lx = qw_u.parts64.lsw;
34 k = ((hx >> 52) & 0x7ff) + n + 54;
36 qw_u.parts64.msw = ((hx & 0x800fffffffffffffULL) | (k << 52));
37 qw_u.parts64.lsw = lx;
38 x = qw_u.value;
40 return x*twolm54;