aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/icfmatch.c
blob: 13aad2e17abb89b0ab1170b186d2919e3ac9f4a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
typedef char __attribute__ ((vector_size (4))) v4qi;
void retv (int a,int b,int c,int d, v4qi *ret)
{
  v4qi v = { a, b , c, d };
  *ret = v;
}
void retv2 (int a,int b,int c,int d, v4qi *ret)
{
  v4qi v = { a, b , c, d };
  *ret = v;
}