From: Justin Bogner Date: Sun, 22 Jun 2014 20:35:10 +0000 (+0000) Subject: Driver: Skip the -ivfsoverlay argument in driver crash diags X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=749a43502d47a85b9dbf0f504d4c1b8eb5f76e8c;p=clang Driver: Skip the -ivfsoverlay argument in driver crash diags git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211474 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Job.cpp b/lib/Driver/Job.cpp index 38f68ebf58..42cc1bc290 100644 --- a/lib/Driver/Job.cpp +++ b/lib/Driver/Job.cpp @@ -41,7 +41,7 @@ static int skipArgs(const char *Flag) { .Cases("-internal-externc-isystem", "-iprefix", "-iwithprefix", true) .Cases("-iwithprefixbefore", "-isysroot", "-isystem", "-iquote", true) .Cases("-resource-dir", "-serialize-diagnostic-file", true) - .Case("-dwarf-debug-flags", true) + .Cases("-dwarf-debug-flags", "-ivfsoverlay", true) .Default(false); // Match found.