[driver crash diagnostics] Strip -internal-isystem and -internal-externc-isystem.

rdar://11949066

llvm-svn: 160752
This commit is contained in:
Chad Rosier 2012-07-25 18:55:43 +00:00
parent f0626f2205
commit ae7581dfd6
2 changed files with 5 additions and 0 deletions

View File

@ -524,6 +524,8 @@ void Driver::generateCompilationDiagnostics(Compilation &C,
Flag.push_back("-idirafter ");
Flag.push_back("-include ");
Flag.push_back("-include-pch ");
Flag.push_back("-internal-isystem ");
Flag.push_back("-internal-externc-isystem ");
Flag.push_back("-iprefix ");
Flag.push_back("-iwithprefix ");
Flag.push_back("-iwithprefixbefore ");

View File

@ -3,6 +3,7 @@
// RUN: env TMPDIR=%t TEMP=%t TMP=%t %clang -fsyntax-only %s \
// RUN: -F/tmp/ -I /tmp/ -idirafter /tmp/ -iquote /tmp/ -isystem /tmp/ \
// RUN: -iprefix /the/prefix -iwithprefix /tmp -iwithprefixbefore /tmp/ \
// RUN: -internal-isystem /tmp/ -internal-externc-isystem /tmp/ \
// RUN: -DFOO=BAR 2>&1 | FileCheck %s
// RUN: cat %t/crash-report-*.c | FileCheck --check-prefix=CHECKSRC %s
// RUN: cat %t/crash-report-*.sh | FileCheck --check-prefix=CHECKSH %s
@ -22,3 +23,5 @@ FOO
// CHECKSH-NOT: -iprefix /the/prefix
// CHECKSH-NOT: -iwithprefix /tmp/
// CHECKSH-NOT: -iwithprefixbefore /tmp/
// CHECKSH-NOT: -internal-isystem /tmp/
// CHECKSH-NOT: -internal-externc-isystem /tmp/