repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
In order to avoid reprocessing a register more than once, we need to add it
[llvm/msp430.git]
/
test
/
TableGen
/
TemplateArgRename.td
blob
535c2e430129534067adc02f267d8b5ec8bc9fbb
1
// RUN: tblgen %s
2
3
// Make sure there is no collision between XX and XX.
4
def S;
5
6
class Before<int XX>;
7
class After : Before<4> {
8
dag XX = (S);
9
}
10
11
12
13
class C1<int X> {
14
int Y = X;
15
}
16
class C2<int Y, dag X> : C1<Y>;
17