blob: a2d7c794d08aa8db3369574948583193e7274917 (
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
|
/* Test to verify that the vec_extract from a vector of
unsigned ints remains unsigned. */
/* { dg-do run } */
/* { dg-options "-ansi -mdejagnu-cpu=power8 " } */
/* { dg-require-effective-target p8vector_hw } */
#include <altivec.h>
#include <stdio.h>
#include <stdlib.h>
int test1(unsigned int ui) {
long long int uie;
vector unsigned int v = vec_splats(ui);
uie = vec_extract(v,0);
if (uie != ui)
abort();
return 0;
}
int main()
{
test1 (0xf6000000);
test1 (0x76000000);
test1 (0x06000000);
return 0;
}
|