Move -Wint-to-pointer-cast from -Wall to -Wmost to group it with more things.

Addressing feedback on r166039 given by Matt Beaumont-Gay.

llvm-svn: 166118
This commit is contained in:
David Blaikie 2012-10-17 18:47:30 +00:00
parent 0736442683
commit 56a12cea13
1 changed files with 2 additions and 1 deletions

View File

@ -383,6 +383,7 @@ def Most : DiagGroup<"most", [
DeleteNonVirtualDtor,
Format,
Implicit,
IntToPointerCast,
MismatchedTags,
MissingBraces,
MultiChar,
@ -414,7 +415,7 @@ def ThreadSafety : DiagGroup<"thread-safety",
// Note that putting warnings in -Wall will not disable them by default. If a
// warning should be active _only_ when -Wall is passed in, mark it as
// DefaultIgnore in addition to putting it here.
def : DiagGroup<"all", [Most, Parentheses, Switch, IntToPointerCast]>;
def : DiagGroup<"all", [Most, Parentheses, Switch]>;
// Warnings enabled by -pedantic. This is magically filled in by TableGen.
def Pedantic : DiagGroup<"pedantic">;