diff options
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp index 9dd4d3bc08c..1792eaa8351 100644 --- a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp +++ b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp @@ -157,8 +157,7 @@ void PIC16AsmPrinter::printDecls(void) { // If no libcalls used, return. if (Decls.empty()) return; - const Section *S = TAI->getNamedSection(PAN::getLibDeclSectionName().c_str()); - SwitchToSection(S); + O << TAI->getCommentString() << "External decls for libcalls - BEGIN." <<"\n"; // Remove duplicate entries. Decls.sort(); Decls.unique(); @@ -169,6 +168,7 @@ void PIC16AsmPrinter::printDecls(void) { O << TAI->getExternDirective() << PAN::getArgsLabel(*I) << "\n"; O << TAI->getExternDirective() << PAN::getRetvalLabel(*I) << "\n"; } + O << TAI->getCommentString() << "External decls for libcalls - END." <<"\n"; } bool PIC16AsmPrinter::doInitialization (Module &M) { @@ -191,7 +191,7 @@ bool PIC16AsmPrinter::doInitialization (Module &M) { void PIC16AsmPrinter::EmitExternsAndGlobals (Module &M) { // Emit declarations for external functions. - O << PAN::getDeclSectionName() <<"\n"; + O << TAI->getCommentString() << "External defs and decls - BEGIN." <<"\n"; for (Module::iterator I = M.begin(), E = M.end(); I != E; I++) { std::string Name = Mang->getValueName(I); if (Name.compare("@abort") == 0) @@ -233,6 +233,7 @@ void PIC16AsmPrinter::EmitExternsAndGlobals (Module &M) { TAI->getGlobalDirective(); O << directive << Name << "\n"; } + O << TAI->getCommentString() << "External defs and decls - END." <<"\n"; } void PIC16AsmPrinter::EmitRomData (Module &M) |