aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vmx/x-01.c
blob: 324e83e35a22b0e3ffdeb18436fa7dd5a0aeeef4 (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
#include <altivec.h>
vector bool char
g(vector unsigned char, vector bool char);

vector bool char
f(vector bool char b, vector unsigned char d) 
{
  vector bool char *p = &b;
  *p = g(d,b);
  return *p;
}

vector bool char b8;
vector unsigned char u8;
vector bool char
g(vector unsigned char a, vector bool char b)
{
  return b8;
}

int main() 
{ 
  f(b8, u8);
  return 0; 
}