mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 02:33:33 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7711 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
094ec50a28
commit
a4a53a5b93
17
test/TableGen/TreeNames.td
Normal file
17
test/TableGen/TreeNames.td
Normal file
@ -0,0 +1,17 @@
|
||||
// This tests to make sure we can parse tree patterns with names.
|
||||
// RUN: tblgen %s
|
||||
|
||||
class TreeNode;
|
||||
class RegisterClass;
|
||||
|
||||
def set : TreeNode;
|
||||
def plus : TreeNode;
|
||||
def imm : TreeNode;
|
||||
def R32 : RegisterClass;
|
||||
|
||||
class Inst<dag T> {
|
||||
dag Pattern = T;
|
||||
}
|
||||
|
||||
def ADDrr32 : Inst<(set R32, (plus R32:$A, R32:$def))>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user