tree-vrp.c (vrp_evaluate_conditional): Mark strings for translation.

2009-07-15  Manuel López-Ibáñez  <manu@gcc.gnu.org>

	* tree-vrp.c (vrp_evaluate_conditional): Mark strings for
	translation.

From-SVN: r149647
parent a9d1723f
2009-07-15 Manuel López-Ibáñez <manu@gcc.gnu.org>
* tree-vrp.c (vrp_evaluate_conditional): Mark strings for
translation.
2009-07-14 DJ Delorie <dj@redhat.com>
* config/mep/mep.c (mep_vliw_jmp_match): New function.
......
......@@ -5749,8 +5749,10 @@ vrp_evaluate_conditional (enum tree_code code, tree op0, tree op1, gimple stmt)
warning_at (location, OPT_Wtype_limits,
integer_zerop (ret)
? "comparison always false due to limited range of data type"
: "comparison always true due to limited range of data type");
? G_("comparison always false "
"due to limited range of data type")
: G_("comparison always true "
"due to limited range of data type"));
}
}
......
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