diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-14 22:21:17 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2009-07-14 22:21:17 +0000 |
commit | 2349c14bbde26316ac6508da4a65cf71737bcbc9 (patch) | |
tree | 38c70d0e67d68ac32f1c1deaaa09e0eba7f8d8a5 /gcc/tree-vrp.c | |
parent | a9d1723f3a269620f6ec157e27d7032e9b4eadcc (diff) | |
download | gcc-2349c14bbde26316ac6508da4a65cf71737bcbc9.tar.gz |
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
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 117b1992816..5379b7555ac 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")); } } |