aboutsummaryrefslogtreecommitdiff
path: root/Driver/DependencyFile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Driver/DependencyFile.cpp')
-rw-r--r--Driver/DependencyFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Driver/DependencyFile.cpp b/Driver/DependencyFile.cpp
index 673ca0734a..2140afcfef 100644
--- a/Driver/DependencyFile.cpp
+++ b/Driver/DependencyFile.cpp
@@ -153,7 +153,7 @@ bool clang::CreateDependencyFileGen(Preprocessor *PP,
bool DependencyFileCallback::FileMatchesDepCriteria(const char *Filename,
SrcMgr::CharacteristicKind FileType) {
if (strcmp(InputFile.c_str(), Filename) != 0 &&
- strcmp("<predefines>", Filename) != 0) {
+ strcmp("<built-in>", Filename) != 0) {
if (GenerateDependencyFileNoSysHeaders)
return FileType == SrcMgr::C_User;
else