In order to avoid reprocessing a register more than once, we need to add it
[llvm/msp430.git] / test / TableGen / TemplateArgRename.td
blob535c2e430129534067adc02f267d8b5ec8bc9fbb
1 // RUN: tblgen %s
3 // Make sure there is no collision between XX and XX.
4 def S;
6 class Before<int XX>;
7 class After : Before<4> {
8   dag XX = (S);
13 class C1<int X> {
14   int Y = X;
16 class C2<int Y, dag X> : C1<Y>;