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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
crash31.C
blob
9c9ce15e986fde322b3fd6ded9d65c87bd4fabdb
1
// { dg-do assemble }
2
// Origin: Corey Kosak
3
4
struct cow_t {
5
template<bool Q>
6
static void tfunc(cow_t *cowp) {}
7
8
void moo() {
9
cow_t *cowp;
10
cow_t::tfunc<true>(cowp);
11
}
12
};
13
14
15
int main()
16
{
17
cow_t *cowp;
18
cow_t::tfunc<true>(cowp);
19
}