Try to fix a few bots.

llvm-svn: 281794
diff --git a/lld/ELF/LinkerScript.cpp b/lld/ELF/LinkerScript.cpp
index 30d6a9d..8b186ec 100644
--- a/lld/ELF/LinkerScript.cpp
+++ b/lld/ELF/LinkerScript.cpp
@@ -481,8 +481,8 @@
     } 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;
   }