From: Aaron Ballman Date: Mon, 1 May 2017 13:05:04 +0000 (+0000) Subject: The -coverage-file flag was removed in r280306, and this piece was missed; NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63b23f80d34f0861b47eb7243a08da2df4a646dd;p=clang The -coverage-file flag was removed in r280306, and this piece was missed; NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@301796 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Job.cpp b/lib/Driver/Job.cpp index 7a4d055159..8b85680f10 100644 --- a/lib/Driver/Job.cpp +++ b/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);