diff options
| author | Justin Bogner <mail@justinbogner.com> | 2014-06-22 20:35:10 +0000 |
|---|---|---|
| committer | Justin Bogner <mail@justinbogner.com> | 2014-06-22 20:35:10 +0000 |
| commit | 61c0e43ef6cbf7560f60067f8dbef2ed4a29dc06 (patch) | |
| tree | 84a14124b3cd4dbfcfecce3d8b7746726a509e67 | |
| parent | 1162d25c1b5e98aeb91813a4de6080568507a6ef (diff) | |
| download | bcm5719-llvm-61c0e43ef6cbf7560f60067f8dbef2ed4a29dc06.tar.gz bcm5719-llvm-61c0e43ef6cbf7560f60067f8dbef2ed4a29dc06.zip | |
Driver: Skip the -ivfsoverlay argument in driver crash diags
llvm-svn: 211474
| -rw-r--r-- | clang/lib/Driver/Job.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Job.cpp b/clang/lib/Driver/Job.cpp index 38f68ebf585..42cc1bc2907 100644 --- a/clang/lib/Driver/Job.cpp +++ b/clang/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. |

