repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
pr59378.C
blob
19d06b5930ab22f943a0c8d4f723e0e071ca8f55
1
// { dg-do compile }
2
typedef int v4si __attribute__ ((vector_size (4*sizeof(int))));
3
template<int C>
4
void traverse(v4si& bounds){
5
v4si m = {0,1,2,3};
6
bounds = __builtin_shuffle(bounds, m);
7
}
8
template void traverse<0>(v4si&);