aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/testsuite/gcc.target/i386/pr38240.c
blob: 6a3568754b3aa4a4941bd484acb680e5a82e9f0e (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */

typedef float V
  __attribute__ ((__vector_size__ (16), __may_alias__));

V __attribute__((target("sse"))) f(const V *ptr) { return *ptr; }

V g(const V *ptr) { return *ptr; }