]> granicus.if.org Git - clang/commitdiff
[driver crash diagnostics] Strip -internal-isystem and -internal-externc-isystem.
authorChad Rosier <mcrosier@apple.com>
Wed, 25 Jul 2012 18:55:43 +0000 (18:55 +0000)
committerChad Rosier <mcrosier@apple.com>
Wed, 25 Jul 2012 18:55:43 +0000 (18:55 +0000)
rdar://11949066

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160752 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/Driver.cpp
test/Driver/crash-report.c

index da7fe187fb38ae16bff944976efac749ae9a538e..5be60b8806fc4e80990df294c780a8aaf27e355e 100644 (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 ");
index 7c7d3ab0abd0f1ca87b080805ca7c8aeb02143be..7adaf42a2c95ea1341bf01a03e6f40c67410ed24 100644 (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/