aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2022-09-20 15:05:33 +0200
committerMartin Liska <mliska@suse.cz>2022-09-20 15:05:33 +0200
commita8bb495a5627bba44407dedbe38653bb0432d811 (patch)
treef78e7faaa29ab5a2f3dd39f8e9b2bd5246260edb /gcc/testsuite/gdc.dg
parent5ed0c11ec2a120031db9cecd9de302549e82dced (diff)
downloadgcc-a8bb495a5627bba44407dedbe38653bb0432d811.zip
gcc-a8bb495a5627bba44407dedbe38653bb0432d811.tar.gz
gcc-a8bb495a5627bba44407dedbe38653bb0432d811.tar.bz2
replace "the the" typos
gcc/ada/ChangeLog: * exp_ch6.adb: Replace "the the" with "the". * sem_ch6.adb: Likewise. * sem_disp.ads: Likewise. gcc/ChangeLog: * ctfc.cc (ctf_add_string): Replace "the the" with "the". * doc/md.texi: Likewise. * gimple-range-infer.cc (non_null_loadstore): Likewise. gcc/fortran/ChangeLog: * gfortran.texi: Replace "the the" with "the". gcc/testsuite/ChangeLog: * g++.dg/warn/Wclass-memaccess.C: Replace "the the" with "the". * g++.dg/warn/Wconversion-real-integer2.C: Likewise. * gcc.target/powerpc/p9-extract-1.c: Likewise. * gcc.target/s390/s390.exp: Likewise. * gcc.target/s390/zvector/vec-cmp-2.c: Likewise. * gdc.dg/torture/simd_store.d: Likewise. * gfortran.dg/actual_array_offset_1.f90: Likewise. * gfortran.dg/pdt_15.f03: Likewise. * gfortran.dg/pointer_array_8.f90: Likewise.
Diffstat (limited to 'gcc/testsuite/gdc.dg')
-rw-r--r--gcc/testsuite/gdc.dg/torture/simd_store.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gdc.dg/torture/simd_store.d b/gcc/testsuite/gdc.dg/torture/simd_store.d
index b96ed42..234c020 100644
--- a/gcc/testsuite/gdc.dg/torture/simd_store.d
+++ b/gcc/testsuite/gdc.dg/torture/simd_store.d
@@ -23,7 +23,7 @@ void main()
// store `v` to location pointed to by `d`
storeUnaligned(cast(T*)d, v);
- // check that the the data was stored correctly
+ // check that the data was stored correctly
foreach (j; 0..T.sizeof)
assert(ptrToV[j] == d[j]);
}