aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr18582-1.c
blob: 6195939053eafc0d3f912afe0a24a3e1c528c131 (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
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-msse3" } */
typedef char v16qi __attribute__((vector_size (16)));
typedef float v4sf __attribute__((vector_size (16)));
typedef double v2df __attribute__((vector_size (16)));

extern char ca[];
extern float fa[];
extern double da[];

extern v16qi cva[];
extern v4sf fva[];
extern v2df dva[];

void
foo (void)
{
  cva[0] = __builtin_ia32_loaddqu (ca);
  cva[0] = __builtin_ia32_lddqu (ca);

  fva[0] = __builtin_ia32_loadups (fa);

  dva[0] = __builtin_ia32_loadupd (da);
}