aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PIC16/PIC16.td
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/PIC16/PIC16.td')
-rw-r--r--lib/Target/PIC16/PIC16.td26
1 files changed, 10 insertions, 16 deletions
diff --git a/lib/Target/PIC16/PIC16.td b/lib/Target/PIC16/PIC16.td
index 8355de1..d37075b 100644
--- a/lib/Target/PIC16/PIC16.td
+++ b/lib/Target/PIC16/PIC16.td
@@ -15,30 +15,24 @@
include "../Target.td"
-//===----------------------------------------------------------------------===//
-// Descriptions
-//===----------------------------------------------------------------------===//
-
include "PIC16RegisterInfo.td"
-include "PIC16CallingConv.td"
include "PIC16InstrInfo.td"
-def PIC16InstrInfo : InstrInfo {
- let TSFlagsFields = [];
- let TSFlagsShifts = [];
-}
-
-
-
-// Not currently supported, but work as SubtargetFeature placeholder.
-def FeaturePIC16Old : SubtargetFeature<"pic16old", "IsPIC16Old", "true",
- "PIC16 Old ISA Support">;
+//===----------------------------------------------------------------------===//
+// Subtarget Features.
+//===----------------------------------------------------------------------===//
+def FeatureCooper : SubtargetFeature<"cooper", "IsCooper", "true",
+ "PIC16 Cooper ISA Support">;
//===----------------------------------------------------------------------===//
-// PIC16 processors supported.
+// PIC16 supported processors.
//===----------------------------------------------------------------------===//
def : Processor<"generic", NoItineraries, []>;
+def : Processor<"cooper", NoItineraries, [FeatureCooper]>;
+
+
+def PIC16InstrInfo : InstrInfo {}
def PIC16 : Target {
let InstructionSet = PIC16InstrInfo;