Add support getting the operands of a User to ocaml.
[oota-llvm.git] / test / TableGen / LazyChange.td
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