Optimizing (zext A + zext B) * C, to (VMULL A, C) + (VMULL B, C) during
[oota-llvm.git] / lib / Target / Alpha / AlphaSubtarget.h
index bcbb62813e499ada2381049a24b92365203aa4a4..f0eb93c6cba2e62b63210af95941901b4d4b3f92 100644 (file)
@@ -20,7 +20,6 @@
 #include <string>
 
 namespace llvm {
-class Module;
 
 class AlphaSubtarget : public TargetSubtarget {
 protected:
@@ -31,13 +30,14 @@ protected:
 
 public:
   /// This constructor initializes the data members to match that
-  /// of the specified module.
+  /// of the specified triple.
   ///
-  AlphaSubtarget(const Module &M, const std::string &FS);
+  AlphaSubtarget(const std::string &TT, const std::string &FS);
   
   /// 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);
+  std::string ParseSubtargetFeatures(const std::string &FS,
+                                     const std::string &CPU);
 
   bool hasCT() const { return HasCT; }
 };