Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/pr63856.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
rev | line source |
---|---|
111 | 1 /* { dg-do compile } */ |
2 /* { dg-options "-O2 -Wno-psabi" } */ | |
3 /* { dg-additional-options "-fPIC" { target fpic } } */ | |
4 typedef int v2si __attribute__ ((vector_size (8))); | |
5 typedef short v4hi __attribute__ ((vector_size (8))); | |
6 | |
7 int __attribute__ ((noinline, noclone)) f (v2si A, int N) | |
8 { | |
9 return ((v4hi) A)[N]; | |
10 } | |
11 | |
12 int __attribute__ ((noinline, noclone)) g (v2si A, int N) | |
13 { | |
14 return ((v4hi) A)[N]; | |
15 } |