aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PIC16/PIC16Subtarget.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/PIC16/PIC16Subtarget.h')
-rw-r--r--lib/Target/PIC16/PIC16Subtarget.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/Target/PIC16/PIC16Subtarget.h b/lib/Target/PIC16/PIC16Subtarget.h
index d7cb239..c6eb711 100644
--- a/lib/Target/PIC16/PIC16Subtarget.h
+++ b/lib/Target/PIC16/PIC16Subtarget.h
@@ -14,7 +14,6 @@
#ifndef PIC16SUBTARGET_H
#define PIC16SUBTARGET_H
-#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetSubtarget.h"
#include <string>
@@ -23,19 +22,23 @@ namespace llvm {
class Module;
class PIC16Subtarget : public TargetSubtarget {
- bool IsPIC16Old;
+
+ // IsCooper - Target ISA is Cooper.
+ bool IsCooper;
public:
/// This constructor initializes the data members to match that
/// of the specified module.
///
- PIC16Subtarget(const TargetMachine &TM, const Module &M,
- const std::string &FS);
+ PIC16Subtarget(const Module &M, const std::string &FS, bool Cooper);
+ /// isCooper - Returns true if the target ISA is Cooper.
+ bool isCooper() const { return IsCooper; }
+
/// ParseSubtargetFeatures - Parses features string setting specified
/// subtarget options. Definition of function is auto generated by tblgen.
void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU);
};
} // End llvm namespace
-#endif
+#endif // PIC16SUBTARGET_H