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
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
vector28.C
blob
ea48c9612446a72c925c1469386ccf23ec566782
1
/* { dg-do compile } */
2
3
typedef int veci __attribute__ ((vector_size (4 * sizeof (int))));
4
typedef float vecf __attribute__ ((vector_size (4 * sizeof (float))));
5
6
void f (veci *a, vecf *b, int c)
7
{
8
*a = c || *b;
9
*a = *a || c;
10
}