aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorAlex Brachet <abrachet@google.com>2023-02-10 19:41:43 +0000
committerAlex Brachet <abrachet@google.com>2023-02-10 19:42:32 +0000
commit3e57aa304f15a0821e5bcc90bd346529fed6658d (patch)
tree1727bc962c40bdf189914d75b359640d5707b966 /clang/lib/Driver/Driver.cpp
parent1f173a0653e7f0c3800033edfa16ffe4c35cde85 (diff)
downloadllvm-3e57aa304f15a0821e5bcc90bd346529fed6658d.zip
llvm-3e57aa304f15a0821e5bcc90bd346529fed6658d.tar.gz
llvm-3e57aa304f15a0821e5bcc90bd346529fed6658d.tar.bz2
[llvm-driver] Reinvoke clang as described by llvm driver extra args
Differential Revision: https://reviews.llvm.org/D137800
Diffstat (limited to 'clang/lib/Driver/Driver.cpp')
-rw-r--r--clang/lib/Driver/Driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp
index 8d8bd55..05674412 100644
--- a/clang/lib/Driver/Driver.cpp
+++ b/clang/lib/Driver/Driver.cpp
@@ -200,7 +200,7 @@ Driver::Driver(StringRef ClangExecutable, StringRef TargetTriple,
DriverTitle(Title), CCCPrintBindings(false), CCPrintOptions(false),
CCLogDiagnostics(false), CCGenDiagnostics(false),
CCPrintProcessStats(false), TargetTriple(TargetTriple), Saver(Alloc),
- CheckInputsExist(true), ProbePrecompiled(true),
+ PrependArg(nullptr), CheckInputsExist(true), ProbePrecompiled(true),
SuppressMissingInputWarning(false) {
// Provide a sane fallback if no VFS is specified.
if (!this->VFS)