[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / TreeNames.td
blobb224e909f88212086f817002d3dc94ad856aaa75
1 // This tests to make sure we can parse tree patterns with names.
2 // RUN: llvm-tblgen %s
3 // XFAIL: vg_leak
5 class TreeNode;
6 class RegisterClass;
8 def set  : TreeNode;
9 def plus : TreeNode;
10 def imm  : TreeNode;
11 def R32  : RegisterClass;
13 class Inst<dag T> {
14   dag Pattern = T;
17 def ADDrr32 : Inst<(set R32, (plus R32:$A, R32:$def))>;