public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: Warning policy?
@ 1999-01-31 23:58 Kaveh R. Ghazi
  1999-01-31 23:58 ` Jeffrey A Law
  0 siblings, 1 reply; 25+ messages in thread
From: Kaveh R. Ghazi @ 1999-01-31 23:58 UTC (permalink / raw)
  To: law; +Cc: chip, egcs-patches, egcs, jbuck, pfeifer, schwab

 > From: Jeffrey A Law <law@hurl.cygnus.com>
 > 
 >   In message < 199901020028.TAA04541@caip.rutgers.edu >you write:
 >   > Anyway, I went ahead and implemented it.  How's this?
 >   > 
 >   > 	Okay to install?
 >   > 
 >   > 		--Kaveh
 >   > 
 >   > 
 >   > Fri Jan  1 19:11:54 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 >   > 
 >   > 	* c-common.c (decl_attributes): Allow applying attribute `unused'
 >   > 	on a LABEL_DECL.
 >   > 
 >   > 	* c-parse.in (label): Parse attributes after a label, and call
 >   >  	`decl_attributes' to handle them.
 >   > 
 >   > 	* gansidecl.h (ATTRIBUTE_UNUSED_LABEL): Define.
 >   > 
 >   > 	* genrecog.c (OUTPUT_LABEL, write_tree_1, write_tree): When
 >   > 	generating labels, mark them with ATTRIBUTE_UNUSED_LABEL.
 >   > 
 >   > 	* invoke.texi: Note that labels can be marked `unused'.
 > 
 > Seems fine to me.


	Thanks, installed.


 > I'll assume that the change to the parser did
 > not introduce any new conflicts, right?



	Right, no new conflicts were introduced.

However the objc-parse.y file complains about 67 conflicts but expects
66.  This happens _before_ my patch is installed.  The same number occur
after my patch is installed. 

I wasn't sure if the 67th conflict should be ignored or not, so I
didn't change the expected number.

The c-parse.y file expects the correct number of conflicts and the
amount also did not change as a result of my patch. 



 > Don't forget to rebuild c-parse.y and objc/objc-parse.y when you
 > check in this patch.
 > Thanks!
 > jeff

	Yup, done.

		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Icon CMT Corp.

^ permalink raw reply	[flat|nested] 25+ messages in thread
* Re: Warning policy?
@ 1999-01-31 23:58 Kaveh R. Ghazi
  1999-01-31 23:58 ` Jeffrey A Law
                   ` (2 more replies)
  0 siblings, 3 replies; 25+ messages in thread
From: Kaveh R. Ghazi @ 1999-01-31 23:58 UTC (permalink / raw)
  To: jbuck; +Cc: chip, egcs-patches, egcs, pfeifer, schwab

 > From: Joe Buck <jbuck@Synopsys.COM>
 > 
 > >  > Andreas Schwab writes: 
 > >  > > Well, the brute force method would be to just emit a `goto L' before
 > >  > > each label L.
 > >  > 
 > >  > That would only create more warnings, as some of these gotos would be
 > >  > unreachable code, which produces a warning.
 > > 
 > > 	Good point, but I'm not seeing this in actual practice from gcc. 
 > > I wrote a small patch to attempt what Andreas suggested and gcc does not
 > > complain about unreachable code.  Various stage1-cc's might complain,
 > > e.g. SunOS4 cc does in fact, but we could arrange to only output the
 > > goto when __GNUC__ is defined. 
 > 
 > Ah, but if gcc's ability to detect dead code improves, the warnings come
 > back.

	My impression was that gcc's response to dead code was to
eliminate it, not warn about it.  At least that's what the comments/docs
suggest...



 > Now, if there were an attribute that can be attached to a label that says
 > "this label may be unused, if so, don't warn about it" that would be
 > the simplest way to fix things.

	
	I'd call it a better solution, not a simpler one. :-)

Anyway, I went ahead and implemented it.  How's this?

	Okay to install?

		--Kaveh


Fri Jan  1 19:11:54 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* c-common.c (decl_attributes): Allow applying attribute `unused'
	on a LABEL_DECL.

	* c-parse.in (label): Parse attributes after a label, and call
 	`decl_attributes' to handle them.

	* gansidecl.h (ATTRIBUTE_UNUSED_LABEL): Define.

	* genrecog.c (OUTPUT_LABEL, write_tree_1, write_tree): When
	generating labels, mark them with ATTRIBUTE_UNUSED_LABEL.

	* invoke.texi: Note that labels can be marked `unused'.


diff -rup orig/egcs-CVS19981231/gcc/c-common.c egcs-CVS19981231/gcc/c-common.c
--- orig/egcs-CVS19981231/gcc/c-common.c	Thu Dec 31 12:05:12 1998
+++ egcs-CVS19981231/gcc/c-common.c	Thu Dec 31 23:05:54 1998
@@ -521,7 +521,8 @@ decl_attributes (node, attributes, prefi
 	    TREE_USED (type) = 1;
 	  else if (TREE_CODE (decl) == PARM_DECL
 		   || TREE_CODE (decl) == VAR_DECL
-		   || TREE_CODE (decl) == FUNCTION_DECL)
+		   || TREE_CODE (decl) == FUNCTION_DECL
+		   || TREE_CODE (decl) == LABEL_DECL)
 	    TREE_USED (decl) = 1;
 	  else
 	    warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
diff -rup orig/egcs-CVS19981231/gcc/c-parse.in egcs-CVS19981231/gcc/c-parse.in
--- orig/egcs-CVS19981231/gcc/c-parse.in	Thu Dec 31 12:05:15 1998
+++ egcs-CVS19981231/gcc/c-parse.in	Thu Dec 31 23:05:54 1998
@@ -2214,12 +2214,15 @@ label:	  CASE expr_no_commas ':'
 		      error_with_decl (duplicate, "this is the first default label");
 		    }
 		  position_after_white_space (); }
-	| identifier ':'
+	| identifier ':' maybe_attribute
 		{ tree label = define_label (input_filename, lineno, $1);
 		  stmt_count++;
 		  emit_nop ();
 		  if (label)
-		    expand_label (label);
+		    {
+		      expand_label (label);
+		      decl_attributes (label, $3, NULL_TREE);
+		    }
 		  position_after_white_space (); }
 	;
 
diff -rup orig/egcs-CVS19981231/gcc/gansidecl.h egcs-CVS19981231/gcc/gansidecl.h
--- orig/egcs-CVS19981231/gcc/gansidecl.h	Thu Dec 31 12:05:11 1998
+++ egcs-CVS19981231/gcc/gansidecl.h	Thu Dec 31 23:05:55 1998
@@ -38,6 +38,14 @@ Boston, MA 02111-1307, USA.  */
 # define __attribute__(x)
 #endif
 
+#ifndef ATTRIBUTE_UNUSED_LABEL
+# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 92)
+#  define ATTRIBUTE_UNUSED_LABEL
+# else
+#  define ATTRIBUTE_UNUSED_LABEL ATTRIBUTE_UNUSED
+# endif /* GNUC < 2.92 */
+#endif /* ATTRIBUTE_UNUSED_LABEL */
+
 #ifndef ATTRIBUTE_UNUSED
 #define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
 #endif /* ATTRIBUTE_UNUSED */
diff -rup orig/egcs-CVS19981231/gcc/genrecog.c egcs-CVS19981231/gcc/genrecog.c
--- orig/egcs-CVS19981231/gcc/genrecog.c	Thu Dec 31 12:06:07 1998
+++ egcs-CVS19981231/gcc/genrecog.c	Thu Dec 31 23:05:55 1998
@@ -51,6 +51,9 @@ Boston, MA 02111-1307, USA.  */
 #include "rtl.h"
 #include "obstack.h"
 
+#define OUTPUT_LABEL(INDENT_STRING, LABEL_NUMBER) \
+  printf("%sL%d: ATTRIBUTE_UNUSED_LABEL\n", (INDENT_STRING), (LABEL_NUMBER))
+
 static struct obstack obstack;
 struct obstack *rtl_obstack = &obstack;
 
@@ -1103,7 +1106,7 @@ write_tree_1 (tree, prevpos, afterward, 
   printf ("\n");
   if (tree && tree->subroutine_number == 0)
     {
-      printf ("  L%d:\n", tree->number);
+      OUTPUT_LABEL ("  ", tree->number);
       tree->label_needed = 0;
     }
 
@@ -1239,7 +1242,7 @@ write_tree_1 (tree, prevpos, afterward, 
 
       if (p->label_needed && (p->retest_mode || p->retest_code))
 	{
-	  printf ("%sL%d:\n", indents[indent - 2], p->number);
+	  OUTPUT_LABEL (indents[indent - 2], p->number);
 	  p->label_needed = 0;
 	}
 
@@ -1330,7 +1333,7 @@ write_tree_1 (tree, prevpos, afterward, 
       /* Now that most mode and code tests have been done, we can write out
 	 a label for an inner node, if we haven't already.  */
       if (p->label_needed)
-	printf ("%sL%d:\n", indents[indent - 2], p->number);
+	OUTPUT_LABEL (indents[indent - 2], p->number);
 
       inner_indent = indent;
 
@@ -1563,7 +1566,7 @@ write_tree (tree, prevpos, afterward, in
 
   if (! initial && tree->subroutine_number > 0)
     {
-      printf (" L%d:\n", tree->number);
+      OUTPUT_LABEL (" ", tree->number);
 
       if (afterward)
 	{
diff -rup orig/egcs-CVS19981231/gcc/invoke.texi egcs-CVS19981231/gcc/invoke.texi
--- orig/egcs-CVS19981231/gcc/invoke.texi	Thu Dec 31 12:06:17 1998
+++ egcs-CVS19981231/gcc/invoke.texi	Thu Dec 31 23:05:55 1998
@@ -1340,7 +1340,7 @@ In order to get a warning about an unuse
 specify both @samp{-W} and @samp{-Wunused}.
 
 To suppress this warning for an expression, simply cast it to void.  For
-unused variables and parameters, use the @samp{unused} attribute
+unused variables, parameters and labels, use the @samp{unused} attribute
 (@pxref{Variable Attributes}).
 
 @item -Wuninitialized

^ permalink raw reply	[flat|nested] 25+ messages in thread
* Re: Warning policy?
@ 1999-01-31 23:58 Kaveh R. Ghazi
  1999-01-31 23:58 ` Jeffrey A Law
  0 siblings, 1 reply; 25+ messages in thread
From: Kaveh R. Ghazi @ 1999-01-31 23:58 UTC (permalink / raw)
  To: law; +Cc: chip, egcs-patches, egcs, jbuck, mark, pfeifer, rth, schwab

 > From: Jeffrey A Law <law@hurl.cygnus.com>
 > 
 >   > Another option would be to simply bump the check to "GCC < 2.93" in
 >   > gansidecl.h (with or without an actual egcs minor version number bump.)
 >  
 > That would be fine with me too.  We could bump the version # to 2.93 if
 > we want.
 > jeff

	How about this?  Okay to install?


Thu Jan  7 09:57:18 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gansidecl.h: Allow attribute unused on labels only when we are
 	version 2.93 or higher.  Not all versions of 2.92 have this feature.

	* version.c: Bump minor number to 93.


diff -rup orig/egcs-CVS19990105/gcc/gansidecl.h egcs-CVS19990105/gcc/gansidecl.h
--- orig/egcs-CVS19990105/gcc/gansidecl.h	Tue Jan  5 22:27:32 1999
+++ egcs-CVS19990105/gcc/gansidecl.h	Thu Jan  7 09:53:41 1999
@@ -39,7 +39,7 @@ Boston, MA 02111-1307, USA.  */
 #endif
 
 #ifndef ATTRIBUTE_UNUSED_LABEL
-# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 92)
+# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 93)
 #  define ATTRIBUTE_UNUSED_LABEL
 # else
 #  define ATTRIBUTE_UNUSED_LABEL ATTRIBUTE_UNUSED
diff -rup orig/egcs-CVS19990105/gcc/version.c egcs-CVS19990105/gcc/version.c
--- orig/egcs-CVS19990105/gcc/version.c	Tue Jan  5 22:28:56 1999
+++ egcs-CVS19990105/gcc/version.c	Thu Jan  7 09:51:19 1999
@@ -1 +1 @@
-char *version_string = "egcs-2.92.34 19990105 (gcc2 ss-980609 experimental)";
+char *version_string = "egcs-2.93.00 19990105 (gcc2 ss-980609 experimental)";

^ permalink raw reply	[flat|nested] 25+ messages in thread
* Re: Warning policy?
@ 1999-01-31 23:58 Kaveh R. Ghazi
  1999-01-31 23:58 ` Jeffrey A Law
  1999-01-31 23:58 ` Jeffrey A Law
  0 siblings, 2 replies; 25+ messages in thread
From: Kaveh R. Ghazi @ 1999-01-31 23:58 UTC (permalink / raw)
  To: law, rth; +Cc: chip, egcs-patches, egcs, jbuck, mark, pfeifer, schwab

 > From: Richard Henderson <rth@cygnus.com>
 > 
 > On Tue, Jan 05, 1999 at 01:43:45AM -0700, Jeffrey A Law wrote:
 > > I think a test based on the version of gcc should be sufficient to fix the
 > > problem.  Can you take care of that?
 > 
 > Not without bumping the minor version of egcs.  Otherwise
 > anything post 1.1 but older than a few days will still fail.
 > r~

	Urg.  Yes, if your stage1 compiler is a snapshot between 2.92.1
-> 2.92.33, it'll fail.  (Is this a common practice?  I would have
thought not, because if you had a problem, you wouldn't know whether the
stage1 compiler was at fault or the current snapshot was.  Obviously too
much ass-u-ME-ing :-) on my part though.)


What I need to do is test "GCC < 2.92.34".  Is there a way to check the
egcs micro version number?

	If not, I can write an autoconf test to set __GNUC_MICRO__ if
"GCC == 2.92".

Another option would be to simply bump the check to "GCC < 2.93" in
gansidecl.h (with or without an actual egcs minor version number bump.)

Yet another option would be to somehow enable to attribute when
stage>=2, or put another way, disable the attribute when stage==1.
But I'm not sure of the easiest way to do that off the top of my head. 

		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Icon CMT Corp.

^ permalink raw reply	[flat|nested] 25+ messages in thread
* Re: Warning policy?
@ 1998-12-31  8:23 Kaveh R. Ghazi
  1998-12-31 11:35 ` Joe Buck
  0 siblings, 1 reply; 25+ messages in thread
From: Kaveh R. Ghazi @ 1998-12-31  8:23 UTC (permalink / raw)
  To: jbuck, schwab; +Cc: chip, egcs-patches, egcs, pfeifer

 > From: Joe Buck <jbuck@Synopsys.COM>
 > 
 >  "Kaveh R. Ghazi" <ghazi@caip.rutgers.edu> writes:
 > > |> 	The "label `???' defined but not used" warnings mostly appear
 > > |> in insn-recog.c.  In this case genrecog.c needs to be fixed.  It may be
 > > |> non-trivial to deduce which labels are unnecessary, I haven't looked. 
 > > |> Another approach might be to get the compiler to allow attribute
 > > |> __unused__ on a label and just mark all of them unused in the generated
 > > |> insn-recog.c file.
 > 
 > Andreas Schwab writes: 
 > > Well, the brute force method would be to just emit a `goto L' before
 > > each label L.
 > 
 > That would only create more warnings, as some of these gotos would be
 > unreachable code, which produces a warning.


	Good point, but I'm not seeing this in actual practice from gcc. 
I wrote a small patch to attempt what Andreas suggested and gcc does not
complain about unreachable code.  Various stage1-cc's might complain,
e.g. SunOS4 cc does in fact, but we could arrange to only output the
goto when __GNUC__ is defined. 




 > The purpose in removing the warnings is to improve the code quality.
 > A -Wall-clean compile is nice, but if all the warnings are gone except
 > for warnings about unused labels in a generated file that would be enough,
 > in my opinion, for Kaveh to declare victory in his war on the warnings.
 > The idea is that we can say there should be no warnings except certain
 > specific warnings in specific files (like this one).



	I agree in principle, but ... consider the following patch.
It eliminates the 60-80 `unused label' warnings without adding any.
IMHO its relatively clean and painless, and it addresses the concern
you raised above.

		--Kaveh


--- egcs-CVS19981230/gcc/genrecog.c~	Wed Dec 30 09:58:54 1998
+++ egcs-CVS19981230/gcc/genrecog.c	Wed Dec 30 14:28:38 1998
@@ -51,6 +51,17 @@ Boston, MA 02111-1307, USA.  */
 #include "rtl.h"
 #include "obstack.h"
 
+/* We output a `goto' right before the actual label to ensure we don't
+   get `unused label' warnings.  Only do it if we are gcc since other
+   compilers might warn about `unreachable code'. */
+#ifdef __GNUC__
+#define OUTPUT_LABEL(INDENT_STRING, LABEL_NUMBER) \
+  printf("%sgoto L%d; L%d:\n", (INDENT_STRING), (LABEL_NUMBER), (LABEL_NUMBER))
+#else
+#define OUTPUT_LABEL(INDENT_STRING, LABEL_NUMBER) \
+  printf("%sL%d:\n", (INDENT_STRING), (LABEL_NUMBER))
+#endif /* __GNUC__ */
+
 static struct obstack obstack;
 struct obstack *rtl_obstack = &obstack;
 
@@ -1103,7 +1114,7 @@ write_tree_1 (tree, prevpos, afterward, 
   printf ("\n");
   if (tree && tree->subroutine_number == 0)
     {
-      printf ("  L%d:\n", tree->number);
+      OUTPUT_LABEL ("  ", tree->number);
       tree->label_needed = 0;
     }
 
@@ -1239,7 +1250,7 @@ write_tree_1 (tree, prevpos, afterward, 
 
       if (p->label_needed && (p->retest_mode || p->retest_code))
 	{
-	  printf ("%sL%d:\n", indents[indent - 2], p->number);
+	  OUTPUT_LABEL (indents[indent - 2], p->number);
 	  p->label_needed = 0;
 	}
 
@@ -1330,7 +1341,7 @@ write_tree_1 (tree, prevpos, afterward, 
       /* Now that most mode and code tests have been done, we can write out
 	 a label for an inner node, if we haven't already.  */
       if (p->label_needed)
-	printf ("%sL%d:\n", indents[indent - 2], p->number);
+	OUTPUT_LABEL (indents[indent - 2], p->number);
 
       inner_indent = indent;
 
@@ -1563,7 +1574,7 @@ write_tree (tree, prevpos, afterward, in
 
   if (! initial && tree->subroutine_number > 0)
     {
-      printf (" L%d:\n", tree->number);
+      OUTPUT_LABEL (" ", tree->number);
 
       if (afterward)
 	{

--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Icon CMT Corp.

^ permalink raw reply	[flat|nested] 25+ messages in thread
* Re: Warning policy?
@ 1998-12-30 11:25 Kaveh R. Ghazi
  0 siblings, 0 replies; 25+ messages in thread
From: Kaveh R. Ghazi @ 1998-12-30 11:25 UTC (permalink / raw)
  To: schwab; +Cc: chip, egcs, pfeifer

 > From: Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
 > 
 > "Kaveh R. Ghazi" <ghazi@caip.rutgers.edu> writes:
 > 
 > |> 	The "label `???' defined but not used" warnings mostly appear in
 > |> insn-recog.c.  In this case genrecog.c needs to be fixed.  It may be
 > |> non-trivial to deduce which labels are unnecessary, I haven't looked. 
 > |> Another approach might be to get the compiler to allow attribute
 > |> __unused__ on a label and just mark all of them unused in the generated
 > |> insn-recog.c file.
 > 
 > Well, the brute force method would be to just emit a `goto L' before
 > each label L.
 > -- 
 > Andreas Schwab                                      "And now for something


	Sounds like a good idea.

The comments in jump.c seem to indicate that the jump pass will optimize
away these gotos.  I.e. it says it "deletes jumps that jump to the
following insn" which I believe this case fits.  So we don't pay
a penalty for this hack.

	I'll submit a patch after the freeze is lifted.

		Thanks,
		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Icon CMT Corp.

^ permalink raw reply	[flat|nested] 25+ messages in thread
* Re: Warning policy?
@ 1998-12-28  8:36 Kaveh R. Ghazi
  1998-12-30  1:51 ` Andreas Schwab
  0 siblings, 1 reply; 25+ messages in thread
From: Kaveh R. Ghazi @ 1998-12-28  8:36 UTC (permalink / raw)
  To: chip, pfeifer; +Cc: egcs

 > From: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
 >  
 > On Sun, 20 Dec 1998, Chip Salzenberg wrote:
 > > I'm bootstrapping EGCS under Linux, and the EGCS sources are
 > > generating a lot of warnings because the configuration default is to
 > > use "gcc -Wall".
 >  
 > Indeed this is the default only for the CVS and snapshot versions, not
 > for releases, as not to confuse ``users''.
 >  
 > > Are the warnings fair game for patches, or is it a configuration error
 > > to use "gcc -Wall" when compiling EGCS?
 >  
 > It is intended to find (and fix) problems. I believe that Kaveh Ghazi
 > <ghazi@caip.rutgers.edu> has been continually working to reduce the 
 > number of warnings, so you might want to coordinate with him.
 >  
 > Gerald

	
	Yup, I'm working on it.  If you are interested, try using
the egcs/contrib/warn_summary script to categorize the warnings.
It has various flags to help you do this.

	The current breakdown looks like this.  (Your mileage may vary
depending on platform and BOOT_CFLAGS.)

Directory	Warnings
---------	--------
gcc topdir	362
Chill		12
C++		7
F77		2
Java		315

	It should be possible to get the java directory warnings down to
the level of the other language subdirs.  The folks doing development
have actually fixed many of these themselves over time.  I'm working on
zapping the last few hundred real soon now. 

	Those remaining in the gcc top level directory are either annoying
to fix, are caused by bugs in the compiler or are warnings about *possible*
problems which gcc can't say for sure.  Here is the approximate breakdown
of the warnings from the top level gcc directory:

Number of warning types:
 121 `???' might be used uninitialized in this function
  81 label `???' defined but not used
  64 missing initializer for `???'
  46 unused parameter `???'
  20 comparison between signed and unsigned
  14 unused variable `???'
  10 variable `???' might be clobbered by `longjmp' or `vfork'
   5 argument `???' might be clobbered by `longjmp' or `vfork'
   1 `???' defined but not used


	Most of the "uninitialized" and "might be clobbered" warnings
are either detection bugs or in the "gcc can't tell for sure" category
so it warns anyway to be safe (but annoying.) I think Jeff said the
buggy ones are due to problems in gcse.c meddling with the flow.  (?)
In the mean time, we are avoiding giving default initializations so that
if someone ever tries to fix this they have something to test against. 
I don't think its being worked on though.  There are some of these
that gcc is documented as being unable to detect properly which are
okay to zap by initialization.  But it requires meticulous code reading
to differentiate these.  Not fun. :-)

	The "label `???' defined but not used" warnings mostly appear in
insn-recog.c.  In this case genrecog.c needs to be fixed.  It may be
non-trivial to deduce which labels are unnecessary, I haven't looked. 
Another approach might be to get the compiler to allow attribute
__unused__ on a label and just mark all of them unused in the generated
insn-recog.c file.

	The "missing initializer" warnings come from toplev.c and are
due to the config/ dir files not containing description strings in the
TARGET_SWITCHES and/or TARGET_OPTIONS macros.  This one is easy to fix
but may take a while and has to be done individually for every target.

	I think the rest are ordinary and just need someone to apply a
fix.  Contributions on any of these (preferably the hard ones :-) )
are welcome.

		--Kaveh
--
Kaveh R. Ghazi			Engagement Manager / Project Services
ghazi@caip.rutgers.edu		Icon CMT Corp.

^ permalink raw reply	[flat|nested] 25+ messages in thread
* Warning policy?
@ 1998-12-20 16:42 Chip Salzenberg
  1998-12-21  3:42 ` Gerald Pfeifer
  0 siblings, 1 reply; 25+ messages in thread
From: Chip Salzenberg @ 1998-12-20 16:42 UTC (permalink / raw)
  To: egcs

I'm bootstrapping EGCS under Linux, and the EGCS sources are
generating a lot of warnings because the configuration default is to
use "gcc -Wall".  Are the warnings fair game for patches, or is it
a configuration error to use "gcc -Wall" when compiling EGCS?
-- 
Chip Salzenberg      - a.k.a. -      <chip@perlsupport.com>
      "When do you work?"   "Whenever I'm not busy."

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~1999-01-31 23:58 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-01-31 23:58 Warning policy? Kaveh R. Ghazi
1999-01-31 23:58 ` Jeffrey A Law
1999-01-31 23:58   ` Richard Henderson
1999-01-31 23:58     ` Jeffrey A Law
  -- strict thread matches above, loose matches on Subject: below --
1999-01-31 23:58 Kaveh R. Ghazi
1999-01-31 23:58 ` Jeffrey A Law
1999-01-31 23:58 ` David Edelsohn
1999-01-31 23:58 ` Kamil Iskra
1999-01-31 23:58   ` Joe Buck
1999-01-31 23:58     ` Jeffrey A Law
1999-01-31 23:58   ` Chip Salzenberg
1999-01-31 23:58   ` Jeffrey A Law
1999-01-31 23:58 Kaveh R. Ghazi
1999-01-31 23:58 ` Jeffrey A Law
1999-01-31 23:58 Kaveh R. Ghazi
1999-01-31 23:58 ` Jeffrey A Law
1999-01-31 23:58 ` Jeffrey A Law
1998-12-31  8:23 Kaveh R. Ghazi
1998-12-31 11:35 ` Joe Buck
1998-12-30 11:25 Kaveh R. Ghazi
1998-12-28  8:36 Kaveh R. Ghazi
1998-12-30  1:51 ` Andreas Schwab
1998-12-30 19:23   ` Joe Buck
1998-12-20 16:42 Chip Salzenberg
1998-12-21  3:42 ` Gerald Pfeifer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).