comparison lib/Target/ARC/ARC.td @ 121:803732b1fca8

LLVM 5.0
author kono
date Fri, 27 Oct 2017 17:07:41 +0900
parents
children
comparison
equal deleted inserted replaced
120:1172e4bd9c6f 121:803732b1fca8
1 //===- ARC.td - Describe the ARC Target Machine ------------*- tablegen -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 include "llvm/Target/Target.td"
11
12 include "ARCRegisterInfo.td"
13 include "ARCInstrInfo.td"
14 include "ARCCallingConv.td"
15
16 def ARCInstrInfo : InstrInfo;
17
18 class Proc<string Name, list<SubtargetFeature> Features>
19 : Processor<Name, NoItineraries, Features>;
20
21 def : Proc<"generic", []>;
22
23 def ARC : Target {
24 let InstructionSet = ARCInstrInfo;
25 }