From 63b23f80d34f0861b47eb7243a08da2df4a646dd 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@301796 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Driver/Job.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1