aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/powerpc/altivec-30.c
blob: 99783191db9111cca3330b1d593aa1f18ace790d (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
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-require-effective-target powerpc_altivec_ok } */
/* { dg-options "-maltivec" } */

#include <stdbool.h>
#include <altivec.h>

#define f0(type) void x0##type (vector bool type x) { }
f0 (int)

#define f1(v, type) void x1##type (v bool type x) { }
f1 (vector, int)

#define f2(b, type) void x2##type (vector b type x) { }
f2 (bool, int)

#define f3(v, b, type) void x3##type (v b type x) { }
f3 (vector, bool, int)

#define f4(v, b, type) void x4##type (v type b x) { }
f4 (vector, bool, int)

#define B bool
#define I int
#define BI bool int
#define VBI vector bool int

vector bool int a;
vector B int b;
vector B I c;
vector BI d;
VBI e;