Added a more function PIC16 backend. However to get this working a patch in
ExpandIntegerOperand (LegalizeIntegerTypes.cpp) is needed which is yet to be reworked and submitted. 


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59617 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@
 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