diff options
-rw-r--r-- | lld/include/lld/Common/Driver.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lld/include/lld/Common/Driver.h b/lld/include/lld/Common/Driver.h index 3edd544cf1d..0a358d8aff6 100644 --- a/lld/include/lld/Common/Driver.h +++ b/lld/include/lld/Common/Driver.h @@ -15,27 +15,27 @@ namespace lld { namespace coff { bool link(llvm::ArrayRef<const char *> args, bool canExitEarly, - llvm::raw_ostream &stdout, llvm::raw_ostream &stderr); + llvm::raw_ostream &stdoutOS, llvm::raw_ostream &stderrOS); } namespace mingw { bool link(llvm::ArrayRef<const char *> args, bool canExitEarly, - llvm::raw_ostream &stdout, llvm::raw_ostream &stderr); + llvm::raw_ostream &stdoutOS, llvm::raw_ostream &stderrOS); } namespace elf { bool link(llvm::ArrayRef<const char *> args, bool canExitEarly, - llvm::raw_ostream &stdout, llvm::raw_ostream &stderr); + llvm::raw_ostream &stdoutOS, llvm::raw_ostream &stderrOS); } namespace mach_o { bool link(llvm::ArrayRef<const char *> args, bool canExitEarly, - llvm::raw_ostream &stdout, llvm::raw_ostream &stderr); + llvm::raw_ostream &stdoutOS, llvm::raw_ostream &stderrOS); } namespace wasm { bool link(llvm::ArrayRef<const char *> args, bool canExitEarly, - llvm::raw_ostream &stdout, llvm::raw_ostream &stderr); + llvm::raw_ostream &stdoutOS, llvm::raw_ostream &stderrOS); } } |