Remove some dead code. CLANG_IS_PRODUCTION is now just a build flag and

is not used in any #ifdef.

llvm-svn: 168703
This commit is contained in:
Rafael Espindola
2012-11-27 16:10:37 +00:00
parent 4ae8b684f5
commit b0448cd52a
6 changed files with 3 additions and 15 deletions

View File

@@ -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);