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 | ca549b7710667ece91388ec8cf07bc4778e404ab (patch) | |
tree | da281d36112dd584125787ad67746d1c6809391a /lib/Target/PIC16/PIC16MemSelOpt.cpp | |
parent | 9f5cd6ac683b552c750e10741d654b5c75dd61a7 (diff) | |
download | external_llvm-ca549b7710667ece91388ec8cf07bc4778e404ab.zip external_llvm-ca549b7710667ece91388ec8cf07bc4778e404ab.tar.gz external_llvm-ca549b7710667ece91388ec8cf07bc4778e404ab.tar.bz2 |
Changed lowering and asmprinter to use ABI Names class called PAN.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71386 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PIC16/PIC16MemSelOpt.cpp')
-rw-r--r-- | lib/Target/PIC16/PIC16MemSelOpt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PIC16/PIC16MemSelOpt.cpp b/lib/Target/PIC16/PIC16MemSelOpt.cpp index 4edf22e..688fee2 100644 --- a/lib/Target/PIC16/PIC16MemSelOpt.cpp +++ b/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 |