repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[llvm-exegesis][NFC] Improve parsing of the YAML files
[llvm-core.git]
/
test
/
TableGen
/
LazyChange.td
blob
2ad6191c253590ddf85f1d8422b696a2a0c9b3eb
1
// RUN: llvm-tblgen %s | FileCheck %s
2
3
// CHECK: int Y = 3
4
5
class C {
6
int X = 4;
7
int Y = X;
8
}
9
10
let X = 3 in
11
def D : C; // Y should be 3 too!
12