diff options
author | Douglas Katzman <dougk@google.com> | 2015-09-02 21:14:53 +0000 |
---|---|---|
committer | Douglas Katzman <dougk@google.com> | 2015-09-02 21:14:53 +0000 |
commit | 7f43af57dbe179b889f37f1b9c86e1b4efa2fa92 (patch) | |
tree | c3708212b039e44010bb593f0d7b47b62b43b285 /clang/lib/Driver/Tools.cpp | |
parent | dab35f317dd1c8b901fd5ed141bf5f2210dd88b2 (diff) | |
download | llvm-7f43af57dbe179b889f37f1b9c86e1b4efa2fa92.zip llvm-7f43af57dbe179b889f37f1b9c86e1b4efa2fa92.tar.gz llvm-7f43af57dbe179b889f37f1b9c86e1b4efa2fa92.tar.bz2 |
Use new utility function to clean leading junk from pathnames. NFC
llvm-svn: 246714
Diffstat (limited to 'clang/lib/Driver/Tools.cpp')
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index 75bf7e4..77d28d85ef 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -264,6 +264,7 @@ void Clang::AddPreprocessingOptions(Compilation &C, const JobAction &JA, const char *DepFile; if (Arg *MF = Args.getLastArg(options::OPT_MF)) { DepFile = MF->getValue(); + llvm::errs()<<"Your depfile is "<<DepFile<<"\n"; C.addFailureResultFile(DepFile, &JA); } else if (Output.getType() == types::TY_Dependencies) { DepFile = Output.getFilename(); |