aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vmx/7d-02.c
blob: 6294cc99efcd3f07ad702accc679fca925dbb7d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
#include <altivec.h>
extern vector unsigned char a[];

void f
(vector unsigned char v, vector unsigned char *p, int i, int b)
{
  if (b)
    p[i] = v;
  else
    vec_st(v, i*16,p);
}

void g
(vector unsigned char v, int i, int b)
{
  if (b)
    a[i] = v;
  else
    vec_st(v,i*16,a);
}