Move the remaining simplify-libcalls tests to instcombine, merging most of them into...
[oota-llvm.git] / test / TableGen / LazyChange.td
1 // RUN: llvm-tblgen %s | grep "int Y = 3"
2
3 class C {
4   int X = 4;
5   int Y = X;
6 }
7
8 let X = 3 in
9 def D : C;    // Y should be 3 too!
10