Revert r247692: Replace Triple with a new TargetTuple in MCTargetDesc/* and related...
[oota-llvm.git] / lib / Target / PowerPC / MCTargetDesc / PPCMCAsmInfo.h
index 958b5a6b4b76d60bb1f8350e5012def95dcc7f8c..e252ac944d40be1536257a6bf7506fee4a854fc8 100644 (file)
 #include "llvm/MC/MCAsmInfoELF.h"
 
 namespace llvm {
-class TargetTuple;
+class Triple;
 
 class PPCMCAsmInfoDarwin : public MCAsmInfoDarwin {
   virtual void anchor();
 
 public:
-  explicit PPCMCAsmInfoDarwin(bool is64Bit, const TargetTuple &);
+  explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple &);
 };
 
 class PPCELFMCAsmInfo : public MCAsmInfoELF {
   void anchor() override;
 
 public:
-  explicit PPCELFMCAsmInfo(bool is64Bit, const TargetTuple &);
+  explicit PPCELFMCAsmInfo(bool is64Bit, const Triple &);
 };
 
 } // namespace llvm