diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-07-09 19:18:56 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-07-09 19:18:56 +0000 |
commit | 046fe57511b2c47907620bb99015abf693b03f51 (patch) | |
tree | 14f54115161a38a8bc44cdfab93741734fd26974 /llvm/lib/CodeGen | |
parent | 4ddf053a638240c5739f817f1aee2517517858da (diff) | |
download | bcm5719-llvm-046fe57511b2c47907620bb99015abf693b03f51.tar.gz bcm5719-llvm-046fe57511b2c47907620bb99015abf693b03f51.zip |
changed mem_fun to std::mem_fun
llvm-svn: 2847
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp index 4df8ba4aabf..ef4156147cb 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp @@ -682,8 +682,8 @@ void PhyRegAlloc::insertCode4SpilledLR(const LiveRange *LR, cerr << "\nFor Inst " << *MInst; cerr << " - SPILLED LR: "; printSet(*LR); cerr << "\n - Added Instructions:"; - for_each(MIBef.begin(), MIBef.end(), mem_fun(&MachineInstr::dump)); - for_each(MIAft.begin(), MIAft.end(), mem_fun(&MachineInstr::dump)); + for_each(MIBef.begin(), MIBef.end(), std::mem_fun(&MachineInstr::dump)); + for_each(MIAft.begin(), MIAft.end(), std::mem_fun(&MachineInstr::dump)); } } |