]> granicus.if.org Git - clang/commit
Fix depfile name construction
authorLuke Cheeseman <luke.cheeseman@arm.com>
Fri, 13 Sep 2019 13:15:35 +0000 (13:15 +0000)
committerLuke Cheeseman <luke.cheeseman@arm.com>
Fri, 13 Sep 2019 13:15:35 +0000 (13:15 +0000)
commita3b46043f1b5d591f0772f2da54f3277303e7d45
treea22d23adf288045f6699ef998dc2b8827492abbd
parentf5ae2881e6c3ca5c6d7f832f046d762ba46c537c
Fix depfile name construction

- When using -o, the provided filename is using for constructing the depfile
  name (when -MMD is passed).
- The logic looks for the rightmost '.' character and replaces what comes after
  with 'd'.
- This works incorrectly when the filename has no extension and the directories
  have '.' in them (e.g. out.dir/test)
- This replaces the funciton to just llvm::sys::path functionality

Differential Revision: https://reviews.llvm.org/D67542

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@371853 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Driver/ToolChains/Clang.cpp
test/Driver/metadata-with-dots.c [new file with mode: 0644]