diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-11-27 16:10:37 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-11-27 16:10:37 +0000 |
commit | 17c874a944090a74aa890d7b5ef361be6e4a0184 (patch) | |
tree | 3786089ca40c3c00da15be059bc4375d83822b12 /lib/Frontend/CreateInvocationFromCommandLine.cpp | |
parent | b85403658a77e9c19c391c8f02bc7767544a25d9 (diff) |
Remove some dead code. CLANG_IS_PRODUCTION is now just a build flag and
is not used in any #ifdef.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CreateInvocationFromCommandLine.cpp')
-rw-r--r-- | lib/Frontend/CreateInvocationFromCommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CreateInvocationFromCommandLine.cpp b/lib/Frontend/CreateInvocationFromCommandLine.cpp index d82cb6d051..6def887ae5 100644 --- a/lib/Frontend/CreateInvocationFromCommandLine.cpp +++ b/lib/Frontend/CreateInvocationFromCommandLine.cpp @@ -48,7 +48,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", false, *Diags); + "a.out", *Diags); // Don't check that inputs exist, they may have been remapped. TheDriver.setCheckInputsExist(false); |