mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 01:58:44 +08:00
Try to fix a few bots.
llvm-svn: 281794
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user