make target-specific TLOF impls (except PIC16) create target-specific

MCSection instances.

llvm-svn: 78500
This commit is contained in:
Chris Lattner
2009-08-08 20:52:13 +00:00
parent 5a9bc50fa8
commit 245fdfb9c3
3 changed files with 9 additions and 9 deletions

View File

@@ -40,8 +40,8 @@ Create(const StringRef &Name, bool IsDirective, SectionKind K, MCContext &Ctx) {
}
MCSectionPECOFF *MCSectionPECOFF::
MCSectionCOFF *MCSectionCOFF::
Create(const StringRef &Name, bool IsDirective, SectionKind K, MCContext &Ctx) {
return new (Ctx) MCSectionPECOFF(Name, IsDirective, K, Ctx);
return new (Ctx) MCSectionCOFF(Name, IsDirective, K, Ctx);
}