From: Manuel López-Ibáñez Date: Tue, 14 Jul 2009 22:21:17 +0000 (+0000) Subject: tree-vrp.c (vrp_evaluate_conditional): Mark strings for translation. X-Git-Tag: releases/gcc-4.5.0~4583 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2349c14bbde26316ac6508da4a65cf71737bcbc9;p=thirdparty%2Fgcc.git tree-vrp.c (vrp_evaluate_conditional): Mark strings for translation. 2009-07-15 Manuel López-Ibáñez * tree-vrp.c (vrp_evaluate_conditional): Mark strings for translation. From-SVN: r149647 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 66697c488339..44e90cbfff81 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-07-15 Manuel López-Ibáñez + + * tree-vrp.c (vrp_evaluate_conditional): Mark strings for + translation. + 2009-07-14 DJ Delorie * config/mep/mep.c (mep_vliw_jmp_match): New function. diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 117b19928160..5379b7555ac5 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -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")); } }