]> granicus.if.org Git - clang/commitdiff
Fix a wart that existed from before we had EXTWARN.
authorChris Lattner <sabre@nondot.org>
Thu, 29 Jan 2009 05:23:19 +0000 (05:23 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 29 Jan 2009 05:23:19 +0000 (05:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63272 91177308-0d34-0410-b5e6-96231b3b80d8

Driver/clang.cpp
include/clang/Basic/DiagnosticCommonKinds.def

index f5bb058d0884a36a1419ebd3074fdb3e93187264..ca91fc682ba3faf858210307314ba7d11f41ddbc 100644 (file)
@@ -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);
-  }
 }
 
 //===----------------------------------------------------------------------===//
index 1bdaf6ab3dad11ea19378ff3fde6203704cc84df..73863215370f56160773cba4965d0db04f33a782 100644 (file)
@@ -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")