r211474 - Driver: Skip the -ivfsoverlay argument in driver crash diags

Justin Bogner mail at justinbogner.com
Sun Jun 22 13:35:10 PDT 2014


Author: bogner
Date: Sun Jun 22 15:35:10 2014
New Revision: 211474

URL: http://llvm.org/viewvc/llvm-project?rev=211474&view=rev
Log:
Driver: Skip the -ivfsoverlay argument in driver crash diags

Modified:
    cfe/trunk/lib/Driver/Job.cpp

Modified: cfe/trunk/lib/Driver/Job.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Job.cpp?rev=211474&r1=211473&r2=211474&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Job.cpp (original)
+++ cfe/trunk/lib/Driver/Job.cpp Sun Jun 22 15:35:10 2014
@@ -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.





More information about the cfe-commits mailing list