From 6c60ed5a45937d5644bafb2fa7272994c337e8d7 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 1 May 2017 13:05:04 +0000 Subject: [PATCH] The -coverage-file flag was removed in r280306, and this piece was missed; NFC. llvm-svn: 301796 --- clang/lib/Driver/Job.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Driver/Job.cpp b/clang/lib/Driver/Job.cpp index 7a4d055..8b85680 100644 --- a/clang/lib/Driver/Job.cpp +++ b/clang/lib/Driver/Job.cpp @@ -49,7 +49,7 @@ static bool skipArgs(const char *Flag, bool HaveCrashVFS, int &SkipNum, // arguments. Therefore, we need to skip the flag and the next argument. bool ShouldSkip = llvm::StringSwitch(Flag) .Cases("-MF", "-MT", "-MQ", "-serialize-diagnostic-file", true) - .Cases("-o", "-coverage-file", "-dependency-file", true) + .Cases("-o", "-dependency-file", true) .Cases("-fdebug-compilation-dir", "-diagnostic-log-file", true) .Cases("-dwarf-debug-flags", "-ivfsoverlay", true) .Default(false); -- 2.7.4