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
c++: constantness of call to function pointer [PR111703]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr79905.C
blob
ab9d07c63736f440227d6c8936ecc8eb9b241eae
1
// PR target/79905
2
// { dg-do compile { target { powerpc*-*-* } } }
3
// { dg-require-effective-target powerpc_altivec_ok }
4
// { dg-options "-maltivec" }
5
6
typedef int V4i __attribute__((vector_size(16)));
7
void a (V4i) {
8
vector int b;
9
a (b);
10
}