summaryrefslogtreecommitdiffstats
path: root/lib/Driver/Job.cpp
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-06-22 20:35:10 +0000
committerJustin Bogner <mail@justinbogner.com>2014-06-22 20:35:10 +0000
commit749a43502d47a85b9dbf0f504d4c1b8eb5f76e8c (patch)
tree6b0bcace24b1311bab5ae7172d191a1287a1d640 /lib/Driver/Job.cpp
parent6e1019e64f38ec1ae7f9c14b6f64c488981971a2 (diff)
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
Diffstat (limited to 'lib/Driver/Job.cpp')
-rw-r--r--lib/Driver/Job.cpp2
1 files changed, 1 insertions, 1 deletions
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.