diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-06-16 22:06:52 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-06-16 22:06:52 +0000 |
commit | 97596b9e7cddfd8e931edc6b3685fe64693d2173 (patch) | |
tree | 12c57aabb0c8bcb9abbc4f26c9a55ae28858c267 | |
parent | 407899b5adb148db36ae918810efc444d7948a39 (diff) |
Don't warn about -Winvalid-pch or -Wno-invalid-pch. Since we don't
search for PCH files that correspond to header inclusions, this option
does not make sense. Fixes <rdar://problem/6970322>.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73563 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/DiagnosticGroups.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticGroups.td b/include/clang/Basic/DiagnosticGroups.td index a004c73003..186e4408fe 100644 --- a/include/clang/Basic/DiagnosticGroups.td +++ b/include/clang/Basic/DiagnosticGroups.td @@ -41,6 +41,7 @@ def FourByteMultiChar : DiagGroup<"four-char-constants">; def : DiagGroup<"init-self">; def : DiagGroup<"inline">; def : DiagGroup<"int-to-pointer-cast">; +def : DiagGroup<"invalid-pch">; def : DiagGroup<"missing-braces">; def : DiagGroup<"missing-declarations">; def : DiagGroup<"missing-format-attribute">; |