remove a dead bool.
[llvm/avr.git] / lib / Target / PIC16 / PIC16Subtarget.h
blob81e3783d72999f098d75cb4a4dedf92aad47b3e7
1 //=====-- PIC16Subtarget.h - Define Subtarget for the PIC16 ---*- C++ -*--====//
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 // This file declares the PIC16 specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #ifndef PIC16SUBTARGET_H
15 #define PIC16SUBTARGET_H
17 #include "llvm/Target/TargetSubtarget.h"
19 #include <string>
21 namespace llvm {
23 class PIC16Subtarget : public TargetSubtarget {
25 // IsCooper - Target ISA is Cooper.
26 bool IsCooper;
28 public:
29 /// This constructor initializes the data members to match that
30 /// of the specified triple.
31 ///
32 PIC16Subtarget(const std::string &TT, const std::string &FS, bool Cooper);
34 /// isCooper - Returns true if the target ISA is Cooper.
35 bool isCooper() const { return IsCooper; }
37 /// ParseSubtargetFeatures - Parses features string setting specified
38 /// subtarget options. Definition of function is auto generated by tblgen.
39 std::string ParseSubtargetFeatures(const std::string &FS,
40 const std::string &CPU);
42 } // End llvm namespace
44 #endif // PIC16SUBTARGET_H