blob: 84b585a4739c24b60603968daec6c0ebeef19c0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* { dg-do run { target { powerpc*-*-* } } } */
/* { dg-require-effective-target lp64 } */
/* { dg-require-effective-target p9vector_hw } */
/* { dg-options "-mdejagnu-cpu=power9" } */
/* This test should succeed only on 64-bit configurations. */
#include <altivec.h>
#include <stdlib.h>
__ieee128
insert_exponent (unsigned __int128 *significand_p,
unsigned long long int *exponent_p)
{
unsigned __int128 significand = *significand_p;
unsigned long long int exponent = *exponent_p;
return scalar_insert_exp (significand, exponent);
}
#define BIAS_FOR_QUAD_EXP 16383
int
main ()
{
/* most-significant bit @13, shift it to position 113 */
unsigned __int128 significand_1 = ((__int128) 0x1100) << 100;
unsigned __int128 significand_2 = ((__int128) 0x1101) << 100;
unsigned long long int exponent_1 = 126 + BIAS_FOR_QUAD_EXP;
unsigned long long int exponent_2 = 124 + BIAS_FOR_QUAD_EXP;
__ieee128 x = (__ieee128) (((__int128) 0x1100LL) << 114);
__ieee128 z = (__ieee128) (((__int128) 0x1101LL) << 112);
if (insert_exponent (&significand_1, &exponent_1) != x)
abort ();
if (insert_exponent (&significand_2, &exponent_2) != z)
abort ();
return 0;
}
|