make target-specific TLOF impls (except PIC16) create target-specific
[oota-llvm.git] / include / llvm / MC / MCSection.h
index e73760a06646dbd2eb23306498fdd7ae9e5b6437..0669d0f39b1c5ec86a905d0c9c041f00dbafd69d 100644 (file)
@@ -72,12 +72,12 @@ namespace llvm {
                                   SectionKind K, MCContext &Ctx);
   };
   
-  class MCSectionPECOFF : public MCSection {
-    MCSectionPECOFF(const StringRef &Name, bool IsDirective, SectionKind K,
-                    MCContext &Ctx) : MCSection(Name, IsDirective, K, Ctx) {}
+  class MCSectionCOFF : public MCSection {
+    MCSectionCOFF(const StringRef &Name, bool IsDirective, SectionKind K,
+                  MCContext &Ctx) : MCSection(Name, IsDirective, K, Ctx) {}
   public:
     
-    static MCSectionPECOFF *Create(const StringRef &Name, bool IsDirective, 
+    static MCSectionCOFF *Create(const StringRef &Name, bool IsDirective, 
                                    SectionKind K, MCContext &Ctx);
   };