aboutsummaryrefslogtreecommitdiffstats
path: root/capstone/suite/synctools/tablegen/include/llvm/Target/GlobalISel/RegisterBank.td
blob: 4dfd139e9fb6ff16731bf66afcd687ded18c4a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//===- RegisterBank.td - Register bank definitions ---------*- tablegen -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//
//===----------------------------------------------------------------------===//

class RegisterBank<string name, list<RegisterClass> classes> {
  string Name = name;
  list<RegisterClass> RegisterClasses = classes;
}