mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 02:24:22 +00:00
[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
Remove the old functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202636 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -253,7 +253,7 @@ bool CodeGenPrepare::runOnFunction(Function &F) {
|
||||
bool CodeGenPrepare::EliminateFallThrough(Function &F) {
|
||||
bool Changed = false;
|
||||
// Scan all of the blocks in the function, except for the entry block.
|
||||
for (Function::iterator I = llvm::next(F.begin()), E = F.end(); I != E; ) {
|
||||
for (Function::iterator I = std::next(F.begin()), E = F.end(); I != E;) {
|
||||
BasicBlock *BB = I++;
|
||||
// If the destination block has a single pred, then this is a trivial
|
||||
// edge, just collapse it.
|
||||
@ -289,7 +289,7 @@ bool CodeGenPrepare::EliminateFallThrough(Function &F) {
|
||||
bool CodeGenPrepare::EliminateMostlyEmptyBlocks(Function &F) {
|
||||
bool MadeChange = false;
|
||||
// Note that this intentionally skips the entry block.
|
||||
for (Function::iterator I = llvm::next(F.begin()), E = F.end(); I != E; ) {
|
||||
for (Function::iterator I = std::next(F.begin()), E = F.end(); I != E;) {
|
||||
BasicBlock *BB = I++;
|
||||
|
||||
// If this block doesn't end with an uncond branch, ignore it.
|
||||
|
Reference in New Issue
Block a user