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
/
LazyChange.td
blob
145fd0bb79f3c9a25cff6d8a275d5edd15c604dc
1
// RUN: tblgen %s | grep {int Y = 3}
2
3
4
class C {
5
int X = 4;
6
int Y = X;
7
}
8
9
let X = 3 in
10
def D : C; // Y should be 3 too!
11