summaryrefslogtreecommitdiff
path: root/gcc/gimple-ssa-warn-restrict.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2018-03-16 21:12:27 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2018-03-16 21:12:27 +0100
commitce811fc49bb470856f6c4953c071d5b3db6485bb (patch)
tree3f1832e061de4a3f054707d165dc576e4be68441 /gcc/gimple-ssa-warn-restrict.c
parent63ecb626d69524c70858af5f17f4c03b5c4707c7 (diff)
re PR c/84909 (typo: conversion from %qT to to %qT)
PR c/84909 * c-warn.c (conversion_warning): Replace "to to" with "to" in diagnostics. * hsa-gen.c (mem_type_for_type): Fix comment typo. * tree-vect-loop-manip.c (vect_create_cond_for_niters_checks): Likewise. * gimple-ssa-warn-restrict.c (builtin_memref::set_base_and_offset): Likewise. From-SVN: r258609
Diffstat (limited to 'gcc/gimple-ssa-warn-restrict.c')
-rw-r--r--gcc/gimple-ssa-warn-restrict.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-ssa-warn-restrict.c b/gcc/gimple-ssa-warn-restrict.c
index 25cc032c2da..e7a85fdcd13 100644
--- a/gcc/gimple-ssa-warn-restrict.c
+++ b/gcc/gimple-ssa-warn-restrict.c
@@ -417,7 +417,7 @@ builtin_memref::set_base_and_offset (tree expr)
poly_int64 bytepos = exact_div (bitpos, BITS_PER_UNIT);
- /* Convert the poly_int64 offset to to offset_int. The offset
+ /* Convert the poly_int64 offset to offset_int. The offset
should be constant but be prepared for it not to be just in
case. */
offset_int cstoff;