summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-loop-niter.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2017-02-25 09:33:17 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2017-02-25 09:33:17 +0100
commit9d975cb6a6cf049da5c0c3fada48a9dc3c016c63 (patch)
treed43f5f47f5dc89975ca2d057fcc57d8ed279ddea /gcc/tree-ssa-loop-niter.c
parent680c60feb43035aa3b1ee6ac3bcc9055bf50fd5e (diff)
tree-ssa-loop-niter.c (number_of_iterations_exit): Simplify warning.
* tree-ssa-loop-niter.c (number_of_iterations_exit): Simplify warning. cp/ * call.c (build_op_delete_call): Make msg1 and msg2 const. From-SVN: r245734
Diffstat (limited to 'gcc/tree-ssa-loop-niter.c')
-rw-r--r--gcc/tree-ssa-loop-niter.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/gcc/tree-ssa-loop-niter.c b/gcc/tree-ssa-loop-niter.c
index 269a2ba86a3..d5eaa33e3ee 100644
--- a/gcc/tree-ssa-loop-niter.c
+++ b/gcc/tree-ssa-loop-niter.c
@@ -2362,13 +2362,9 @@ number_of_iterations_exit (struct loop *loop, edge exit,
return true;
if (warn)
- {
- const char *wording;
-
- wording = N_("missed loop optimization, the loop counter may overflow");
- warning_at (gimple_location_safe (stmt),
- OPT_Wunsafe_loop_optimizations, "%s", gettext (wording));
- }
+ warning_at (gimple_location_safe (stmt),
+ OPT_Wunsafe_loop_optimizations,
+ "missed loop optimization, the loop counter may overflow");
return false;
}