repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
ext
/
attrib26.C
blob
dedf43a02461853a96b7856985a5b9e9f56e0e73
1
// PR c++/28659
2
// The attribute was causing us to get confused in merge_types when
3
// combining the template type with an uninstantiated version.
4
5
template<class T>
6
struct __attribute__((aligned(1))) A
7
{
8
A& operator=(const A &t);
9
};
10
11
template<class T>
12
A<T>& A<T>::operator=(const A<T> &t)
13
{
14
}