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
libgfortran: Fix namelist read.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr103326.C
blob
260e7da86e8bed40485d52bf0e44d15eb8b833a3
1
// { dg-do compile }
2
// { dg-require-effective-target c++11 }
3
4
using x86_64_v16qi [[gnu::__vector_size__ (16)]] = char;
5
6
template<typename T>
7
void foo()
8
{
9
constexpr x86_64_v16qi zero{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
10
}
11
12
void foo2()
13
{
14
foo<int>();
15
}