Disable the keyword-as-macro warning for now until the noise level is

reduced.

llvm-svn: 224433
This commit is contained in:
Joerg Sonnenberger 2014-12-17 16:25:45 +00:00
parent 1ce7d31f33
commit 1f42c566be
1 changed files with 2 additions and 1 deletions

View File

@ -290,8 +290,9 @@ def note_pp_ambiguous_macro_chosen : Note<
"expanding this definition of %0">;
def note_pp_ambiguous_macro_other : Note<
"other definition of %0">;
// FIXME: Remove DefaultIgnore after reducing noise level.
def warn_pp_macro_hides_keyword : Extension<
"keyword is hidden by macro definition">, InGroup<KeywordAsMacro>;
"keyword is hidden by macro definition">, InGroup<KeywordAsMacro>, DefaultIgnore;
def pp_invalid_string_literal : Warning<
"invalid string literal, ignoring final '\\'">;