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
In gcc/objc/: 2010-11-13 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20091022-1_0.C
blob
cb3f20a4ed2e374d67a3078eb68f5cf841c92b70
1
// { dg-lto-do link }
2
// { dg-extra-ld-options "-fwhole-program" }
3
4
template <int dim>
5
struct AutoDerivativeFunction {
6
virtual void gradient_list (void);
7
};
8
template <int dim>
9
void AutoDerivativeFunction<dim>::gradient_list (void)
10
{
11
}
12
template class AutoDerivativeFunction<1>;
13
int main() {}