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
* doc/extend.texi (Loop-Specific Pragmas): Document pragma GCC unroll.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
vector3.C
blob
1a67cf76a61d69c7c460a0c49f03cfd842918518
1
/* { dg-do compile } */
2
/* { dg-options "" } */
3
4
// PR c++/28302
5
6
int __attribute__((vector_size(8))) x;
7
8
void foo()
9
{
10
~x;
11
}
12