New feature: add support for target intrinsics being defined in the
[oota-llvm.git] / lib / Target / PIC16 / PIC16Subtarget.h
index d7cb2392b07232b2ee4ecc9a05f2276ac43ca4f1..c6eb7119d9575d2a2f1016cd5c5fe4c7900e1bdb 100644 (file)
@@ -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