diff --git a/examples/clang-interpreter/main.cpp b/examples/clang-interpreter/main.cpp index 713a650b90b5b8e87eb351fd463ca83c54ef204d..0f083c151434b0ce9da04e2ee462873e44da8a00 100644 --- a/examples/clang-interpreter/main.cpp +++ b/examples/clang-interpreter/main.cpp @@ -75,7 +75,7 @@ int main(int argc, const char **argv, char * const *envp) { IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagClient); - Driver TheDriver(Path, llvm::sys::getProcessTriple(), "a.out", Diags); + Driver TheDriver(Path, llvm::sys::getProcessTriple(), Diags); TheDriver.setTitle("clang interpreter"); // FIXME: This is a hack to try to force the driver to do something we can diff --git a/include/clang/Driver/Driver.h b/include/clang/Driver/Driver.h index 269bc1ad6b183c793f89b7fb586b77cb7fe6209a..df974ad1d760586405b84ecb21746eedd5b50904 100644 --- a/include/clang/Driver/Driver.h +++ b/include/clang/Driver/Driver.h @@ -193,7 +193,6 @@ private: public: Driver(StringRef _ClangExecutable, StringRef _DefaultTargetTriple, - StringRef _DefaultImageName, DiagnosticsEngine &_Diags); ~Driver(); diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index 44c41b6b69453cedc84e3aa640d9ca3ae7d2a43e..67ead619f748f349b47fd2615a3176ae2dd06c1f 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -47,12 +47,11 @@ using namespace llvm::opt; Driver::Driver(StringRef ClangExecutable, StringRef DefaultTargetTriple, - StringRef DefaultImageName, DiagnosticsEngine &Diags) : Opts(createDriverOptTable()), Diags(Diags), Mode(GCCMode), ClangExecutable(ClangExecutable), SysRoot(DEFAULT_SYSROOT), UseStdLib(true), DefaultTargetTriple(DefaultTargetTriple), - DefaultImageName(DefaultImageName), + DefaultImageName("a.out"), DriverTitle("clang LLVM compiler"), CCPrintOptionsFilename(0), CCPrintHeadersFilename(0), CCLogDiagnosticsFilename(0), diff --git a/lib/Frontend/CreateInvocationFromCommandLine.cpp b/lib/Frontend/CreateInvocationFromCommandLine.cpp index ededf9a7577e3c212f35d16e535887164c459078..f108e55b574a65438df4ba34e771784f8284b04e 100644 --- a/lib/Frontend/CreateInvocationFromCommandLine.cpp +++ b/lib/Frontend/CreateInvocationFromCommandLine.cpp @@ -47,7 +47,7 @@ clang::createInvocationFromCommandLine(ArrayRef<const char *> ArgList, // FIXME: We shouldn't have to pass in the path info. driver::Driver TheDriver("clang", llvm::sys::getDefaultTargetTriple(), - "a.out", *Diags); + *Diags); // Don't check that inputs exist, they may have been remapped. TheDriver.setCheckInputsExist(false); diff --git a/lib/Tooling/CompilationDatabase.cpp b/lib/Tooling/CompilationDatabase.cpp index a70e066d296bc83f50e9bd9bf26c814317670027..164a38d4232393abf3cdd28b6e0e557214b0757b 100644 --- a/lib/Tooling/CompilationDatabase.cpp +++ b/lib/Tooling/CompilationDatabase.cpp @@ -212,11 +212,11 @@ static bool stripPositionalArgs(std::vector<const char *> Args, IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts, &DiagClient, false); - // Neither clang executable nor default image name are required since the - // jobs the driver builds will not be executed. + // The clang executable path isn't required since the jobs the driver builds + // will not be executed. std::unique_ptr<driver::Driver> NewDriver(new driver::Driver( /* ClangExecutable= */ "", llvm::sys::getDefaultTargetTriple(), - /* DefaultImageName= */ "", Diagnostics)); + Diagnostics)); NewDriver->setCheckInputsExist(false); // This becomes the new argv[0]. The value is actually not important as it diff --git a/lib/Tooling/Tooling.cpp b/lib/Tooling/Tooling.cpp index 5f4c46d6ef3d7ba8989778a00f1512e909fbed77..610bfc8f26957663ec2927a675f1db427ada83df 100644 --- a/lib/Tooling/Tooling.cpp +++ b/lib/Tooling/Tooling.cpp @@ -54,10 +54,8 @@ FrontendActionFactory::~FrontendActionFactory() {} /// \brief Builds a clang driver initialized for running clang tools. static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics, const char *BinaryName) { - const char *DefaultOutputName = "a.out"; clang::driver::Driver *CompilerDriver = new clang::driver::Driver( - BinaryName, llvm::sys::getDefaultTargetTriple(), - DefaultOutputName, *Diagnostics); + BinaryName, llvm::sys::getDefaultTargetTriple(), *Diagnostics); CompilerDriver->setTitle("clang_based_tool"); return CompilerDriver; } diff --git a/tools/driver/driver.cpp b/tools/driver/driver.cpp index beb271f810e54e6c33a4dd759a09396b4b534afd..fd135554a63a85977ee5f7b40c1e3120e59a6c0b 100644 --- a/tools/driver/driver.cpp +++ b/tools/driver/driver.cpp @@ -371,7 +371,7 @@ int main(int argc_, const char **argv_) { DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagClient); ProcessWarningOptions(Diags, *DiagOpts, /*ReportDiags=*/false); - Driver TheDriver(Path, llvm::sys::getDefaultTargetTriple(), "a.out", Diags); + Driver TheDriver(Path, llvm::sys::getDefaultTargetTriple(), Diags); // Attempt to find the original path used to invoke the driver, to determine // the installed path. We do this manually, because we want to support that