Commit 253a697e by Dirk Mueller Committed by Dirk Mueller

c-typeck.c (build_compound_expr): Annotate warning() call with OPT_Wunused_value.

2007-04-25  Dirk Mueller  <dmueller@suse.de>

       * c-typeck.c (build_compound_expr): Annotate warning()
       call with OPT_Wunused_value.

From-SVN: r124160
parent 4b5f13f3
2007-04-25 Dirk Mueller <dmueller@suse.de>
* c-typeck.c (build_compound_expr): Annotate warning()
call with OPT_Wunused_value.
2007-04-25 Thiemo Seufer <ths@mips.com>
* config/mips/mips.opt (mdmx, mmt, mno-mdmx): New options.
......
......@@ -3402,7 +3402,8 @@ build_compound_expr (tree expr1, tree expr2)
|| TREE_CODE (TREE_OPERAND (expr1, 1)) == NOP_EXPR))
; /* (void) a, (void) b, c */
else
warning (0, "left-hand operand of comma expression has no effect");
warning (OPT_Wunused_value,
"left-hand operand of comma expression has no effect");
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment