This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix complain_wrong_lang


Hi!

gcc -xc /dev/null -fno-rtti -S -o /dev/null
cc1: warning: "-frtti" is valid for C++ but not for C/ObjC

is quite confusing, because the user did not pass -frtti but -fno-rtti.
The following patch fixes it.
Ok to commit? What about gcc-3_3-branch?

2003-06-11  Jakub Jelinek  <jakub@redhat.com>

	* c-opts.c (complain_wrong_lang): Add on argument.
	Print no- switch if on is false.
	(c_common_decode_option): Adjust caller.

--- gcc/c-opts.c.jj	2003-05-15 18:05:58.000000000 -0400
+++ gcc/c-opts.c	2003-06-11 04:38:26.000000000 -0400
@@ -56,7 +56,7 @@ static size_t deferred_count, deferred_s
 static void missing_arg PARAMS ((size_t));
 static size_t find_opt PARAMS ((const char *, int));
 static void set_Wimplicit PARAMS ((int));
-static void complain_wrong_lang PARAMS ((size_t));
+static void complain_wrong_lang PARAMS ((size_t, int));
 static void write_langs PARAMS ((char *, int));
 static void print_help PARAMS ((void));
 static void handle_OPT_d PARAMS ((const char *));
@@ -614,7 +614,7 @@ c_common_decode_option (argc, argv)
      after the call to find_opt, and return argc.  */
   if (!(cl_options[opt_index].flags & lang_flag))
     {
-      complain_wrong_lang (opt_index);
+      complain_wrong_lang (opt_index, on);
       goto done;
     }
 
@@ -1703,16 +1703,18 @@ write_langs (buf, flags)
 
 /* Complain that switch OPT_INDEX does not apply to this front end.  */
 static void
-complain_wrong_lang (opt_index)
+complain_wrong_lang (opt_index, on)
      size_t opt_index;
+     int on;
 {
   char ok_langs[60], bad_langs[60];
   int ok_flags = cl_options[opt_index].flags;
 
   write_langs (ok_langs, ok_flags);
   write_langs (bad_langs, ~ok_flags);
-  warning ("\"-%s\" is valid for %s but not for %s",
-	   cl_options[opt_index].opt_text, ok_langs, bad_langs);
+  warning ("\"-%c%s%s\" is valid for %s but not for %s",
+	   cl_options[opt_index].opt_text[0], on ? "" : "no-",
+	   cl_options[opt_index].opt_text + 1, ok_langs, bad_langs);
 }
 
 /* Handle --help output.  */

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]