diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/tree-ssa.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9958bd7..8d5e5e3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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> diff --git a/gcc/tree-ssa.c b/gcc/tree-ssa.c index 1eb407d..51e1fa2 100644 --- a/gcc/tree-ssa.c +++ b/gcc/tree-ssa.c @@ -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 |