aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/XCore/XCore.td
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/XCore/XCore.td')
-rw-r--r--lib/Target/XCore/XCore.td12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/Target/XCore/XCore.td b/lib/Target/XCore/XCore.td
index 5978a15..b07445d 100644
--- a/lib/Target/XCore/XCore.td
+++ b/lib/Target/XCore/XCore.td
@@ -30,22 +30,14 @@ def XCoreInstrInfo : InstrInfo {
}
//===----------------------------------------------------------------------===//
-// XCore Subtarget features.
-//===----------------------------------------------------------------------===//
-
-def FeatureXS1B
- : SubtargetFeature<"xs1b", "IsXS1B", "true",
- "Enable XS1B instructions">;
-
-//===----------------------------------------------------------------------===//
// XCore processors supported.
//===----------------------------------------------------------------------===//
class Proc<string Name, list<SubtargetFeature> Features>
: Processor<Name, NoItineraries, Features>;
-def : Proc<"generic", [FeatureXS1B]>;
-def : Proc<"xs1b-generic", [FeatureXS1B]>;
+def : Proc<"generic", []>;
+def : Proc<"xs1b-generic", []>;
//===----------------------------------------------------------------------===//
// Declare the target which we are implementing