[cfe-commits] r141078 - /cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td

Ted Kremenek kremenek at apple.com
Tue Oct 4 07:48:43 PDT 2011


Author: kremenek
Date: Tue Oct  4 09:48:42 2011
New Revision: 141078

URL: http://llvm.org/viewvc/llvm-project?rev=141078&view=rev
Log:
Place warning warn_drv_no_debug_w_integrated_as under a -W flag.

Modified:
    cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td

Modified: cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td?rev=141078&r1=141077&r2=141078&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td Tue Oct  4 09:48:42 2011
@@ -123,7 +123,8 @@
 def warn_drv_pch_not_first_include : Warning<
   "precompiled header '%0' was ignored because '%1' is not first '-include'">;
 def warn_drv_no_debug_w_integrated_as : Warning<
-  "ignoring unsupported -g option with integrated assembler">;
+  "ignoring unsupported -g option with integrated assembler">,
+  InGroup<DiagGroup<"unsupported-debug-with-integrated-as">>;
 
 def note_drv_command_failed_diag_msg : Note<
   "diagnostic msg: %0">;





More information about the cfe-commits mailing list