aboutsummaryrefslogtreecommitdiff
path: root/gcc/hsa-gen.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/hsa-gen.c
parent63ecb626d69524c70858af5f17f4c03b5c4707c7 (diff)
downloadgcc-ce811fc49bb470856f6c4953c071d5b3db6485bb.zip
gcc-ce811fc49bb470856f6c4953c071d5b3db6485bb.tar.gz
gcc-ce811fc49bb470856f6c4953c071d5b3db6485bb.tar.bz2
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/hsa-gen.c')
-rw-r--r--gcc/hsa-gen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hsa-gen.c b/gcc/hsa-gen.c
index 55a46b5..7974fff 100644
--- a/gcc/hsa-gen.c
+++ b/gcc/hsa-gen.c
@@ -691,7 +691,7 @@ mem_type_for_type (BrigType16_t type)
/* HSA has non-intuitive constraints on load/store types. If it's
a bit-type it _must_ be B128, if it's not a bit-type it must be
64bit max. So for loading entities of 128 bits (e.g. vectors)
- we have to to B128, while for loading the rest we have to use the
+ we have to use B128, while for loading the rest we have to use the
input type (??? or maybe also flattened to a equally sized non-vector
unsigned type?). */
if ((type & BRIG_TYPE_PACK_MASK) == BRIG_TYPE_PACK_128)