OSDN Git Service

* tree-ssa.c ((warn_uninit): Annotate warning with
authormueller <mueller@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2007 18:45:39 +0000 (18:45 +0000)
committermueller <mueller@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2007 18:45:39 +0000 (18:45 +0000)
       -Wuninitialized.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@124161 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-ssa.c

index 9958bd7..8d5e5e3 100644 (file)
@@ -2,6 +2,8 @@
 
        * c-typeck.c (build_compound_expr): Annotate warning()
        call with OPT_Wunused_value.
+       * tree-ssa.c ((warn_uninit): Annotate warning with
+       -Wuninitialized.
 
 2007-04-25  Thiemo Seufer  <ths@mips.com>
 
index 1eb407d..51e1fa2 100644 (file)
@@ -1150,7 +1150,7 @@ warn_uninit (tree t, const char *gmsgid, void *data)
   locus = (context != NULL && EXPR_HAS_LOCATION (context)
           ? EXPR_LOCUS (context)
           : &DECL_SOURCE_LOCATION (var));
-  warning (0, gmsgid, locus, var);
+  warning (OPT_Wuninitialized, gmsgid, locus, var);
   xloc = expand_location (*locus);
   floc = expand_location (DECL_SOURCE_LOCATION (cfun->decl));
   if (xloc.file != floc.file