diff options
author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-05-10 05:23:47 +0000 |
---|---|---|
committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-05-10 05:23:47 +0000 |
commit | 258f8516299e2e2e7bf2838aaa80f17fe42ca98c (patch) | |
tree | 2e7917db081a836d45b9c3e4f136a358d6c5cfc0 /llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp | |
parent | 3978f7972dabb33fafc9f081e12f326103c988e0 (diff) | |
download | bcm5719-llvm-258f8516299e2e2e7bf2838aaa80f17fe42ca98c.tar.gz bcm5719-llvm-258f8516299e2e2e7bf2838aaa80f17fe42ca98c.zip |
Changed lowering and asmprinter to use ABI Names class called PAN.
llvm-svn: 71386
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp b/llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp index 4edf22ea198..688fee2cf79 100644 --- a/llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp +++ b/llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp @@ -145,7 +145,7 @@ bool MemSelOpt::processInstruction(MachineInstr *MI) { // External Symbol is generated for temp data and arguments. They are // in fpdata.<functionname>.# section. std::string Sym = Op.getSymbolName(); - NewBank = PIC16ABINames::getSectionNameForSym(Sym); + NewBank = PAN::getSectionNameForSym(Sym); } // If the previous and new section names are same, we don't need to |