diff options
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 117b199..5379b75 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")); } } |