blob: 800c32c6e07fc307bfc2bd38cd45858c83cb09e8 (
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
|
/* { dg-do run { target { powerpc*-*-* } } } */
/* { dg-skip-if "do not override -mcpu" { powerpc*-*-* } { "-mcpu=*" } { "-mcpu=power9" } } */
/* { dg-require-effective-target p9vector_hw } */
/* { dg-options "-mcpu=power9" } */
/* This test should succeed on 32-bit and 64-bit configurations. */
#include <altivec.h>
#include <stdlib.h>
char
compare_exponents_eq (double *exponent1_p, double *exponent2_p)
{
double exponent1 = *exponent1_p;
double exponent2 = *exponent2_p;
if (scalar_cmp_exp_eq (exponent1, exponent2))
return 't';
else
return 'f';
}
int
main ()
{
double x = (double) (0x1100LL << 50);
double y = (double) (0x1101LL << 50);
double z = (double) (0x1101LL << 37);
if (compare_exponents_eq (&x, &y) == 'f')
abort ();
if (compare_exponents_eq (&x, &z) == 't')
abort ();
return 0;
}
|