forked from OSchip/llvm-project
Fix a wart that existed from before we had EXTWARN.
llvm-svn: 63272
This commit is contained in:
parent
60f36223a9
commit
0f65a585ba
|
@ -730,15 +730,6 @@ static void InitializeDiagnostics(Diagnostic &Diags) {
|
|||
if (!WarnImplicitFunctionDeclaration)
|
||||
Diags.setDiagnosticMapping(diag::warn_implicit_function_decl,
|
||||
diag::MAP_IGNORE);
|
||||
|
||||
// If -pedantic-errors is set, turn extensions that warn by default into
|
||||
// errors.
|
||||
if (ErrorOnExtensions) {
|
||||
Diags.setDiagnosticMapping(diag::warn_hex_escape_too_large,
|
||||
diag::MAP_ERROR);
|
||||
Diags.setDiagnosticMapping(diag::warn_octal_escape_too_large,
|
||||
diag::MAP_ERROR);
|
||||
}
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
|
@ -75,9 +75,9 @@ DIAG(warn_implicit_function_decl, WARNING,
|
|||
"implicit declaration of function %0")
|
||||
DIAG(err_pp_I_dash_not_supported, ERROR,
|
||||
"-I- not supported, please use -iquote instead")
|
||||
DIAG(warn_octal_escape_too_large, WARNING,
|
||||
DIAG(warn_octal_escape_too_large, EXTWARN,
|
||||
"octal escape sequence out of range")
|
||||
DIAG(warn_hex_escape_too_large, WARNING,
|
||||
DIAG(warn_hex_escape_too_large, EXTWARN,
|
||||
"hex escape sequence out of range")
|
||||
DIAG(warn_pp_undef_identifier, WARNING,
|
||||
"%0 is not defined, evaluates to 0")
|
||||
|
|
Loading…
Reference in New Issue