Try to fix a few bots.

llvm-svn: 281794
This commit is contained in:
Rafael Espindola 2016-09-16 22:47:34 +00:00
parent 6b195ece57
commit 373343bd5b
1 changed files with 2 additions and 2 deletions

View File

@ -481,8 +481,8 @@ template <class ELFT> void LinkerScript<ELFT>::assignAddresses() {
} else {
// If linker script lists alloc/non-alloc sections is the wrong order,
// this does a right rotate to bring the desired command in place.
auto RPos = make_reverse_iterator(Pos + 1);
std::rotate(RPos, RPos + 1, make_reverse_iterator(CmdIter));
auto RPos = llvm::make_reverse_iterator(Pos + 1);
std::rotate(RPos, RPos + 1, llvm::make_reverse_iterator(CmdIter));
}
++CmdIndex;
}