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++.robertl
/
eb11.C
blob
e5f29a157916643da91bf5c61455a36c1ebf0033
1
// { dg-do assemble }
2
3
template<int N1, int N2>
4
struct meta_max {
5
enum { max = (N1 > N2) ? N1 : N2 };
6
};
7
8
struct X {
9
enum {
10
a = 0,
11
n = 0
12
};
13
};
14
15
template<class T1, class T2>
16
struct Y {
17
18
enum {
19
a = T1::a + T2::a,
20
21
// NB: if the next line is changed to
22
// n = (T1::n > T2::n) ? T1::n : T2::n
23
// the problem goes away.
24
25
n = meta_max<T1::n,T2::n>::max
26
};
27
};
28
29
int z = Y<X,X>::a;