]> granicus.if.org Git - clang/commitdiff
when a diagnostic is an extension and has no other -W flag,
authorChris Lattner <sabre@nondot.org>
Tue, 16 Feb 2010 18:29:31 +0000 (18:29 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 16 Feb 2010 18:29:31 +0000 (18:29 +0000)
indicate that it was enabled with -pedantic so people know
why they're getting them:

$ printf "int x;" | clang -xc - -pedantic
<stdin>:1:7: warning: no newline at end of file [-pedantic]
int x;
      ^

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96365 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Frontend/TextDiagnosticPrinter.cpp

index 9ec5ffe1c353dc2a4c921d993796d858b771e53d..3c64332512dc4e9d528de7fc57af5895bac00c0c 100644 (file)
@@ -786,12 +786,15 @@ void TextDiagnosticPrinter::HandleDiagnostic(Diagnostic::Level Level,
   llvm::SmallString<100> OutStr;
   Info.FormatDiagnostic(OutStr);
 
-  if (DiagOpts->ShowOptionNames)
+  if (DiagOpts->ShowOptionNames) {
     if (const char *Opt = Diagnostic::getWarningOptionForDiag(Info.getID())) {
       OutStr += " [-W";
       OutStr += Opt;
       OutStr += ']';
+    } else if (Diagnostic::isBuiltinExtensionDiag(Info.getID())) {
+      OutStr += " [-pedantic]";
     }
+  }
 
   if (DiagOpts->ShowColors) {
     // Print warnings, errors and fatal errors in bold, no color