diff options
author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-05-08 04:50:14 +0000 |
---|---|---|
committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-05-08 04:50:14 +0000 |
commit | 89e72b9c4a9ca352937b9ee2aa8ae7c3d8ff9401 (patch) | |
tree | baf17cda1ccd2095f29125170f60da8c56eb6ae8 /llvm/lib/Target/PIC16/PIC16MemSelOpt.cpp | |
parent | afc875c7667983c18778cf60a32f49a1e2cbe292 (diff) | |
download | bcm5719-llvm-89e72b9c4a9ca352937b9ee2aa8ae7c3d8ff9401.tar.gz bcm5719-llvm-89e72b9c4a9ca352937b9ee2aa8ae7c3d8ff9401.zip |
Moved pic16 naming functions to correct place.
No functionality change.
llvm-svn: 71207
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 0458c5a4174..4edf22ea198 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 = getSectionNameForSym(Sym); + NewBank = PIC16ABINames::getSectionNameForSym(Sym); } // If the previous and new section names are same, we don't need to |