aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Sebor <msebor@redhat.com>2021-10-27 09:39:03 -0600
committerMartin Sebor <msebor@redhat.com>2021-10-27 09:40:11 -0600
commit99b1021d21e5812ed01221d8fca8e8a32488a934 (patch)
tree09ff8b13eb8ff7594c27dc8812efbf696dc97484
parentab810952eb7c061e37054ddd1dfe0aa033365131 (diff)
downloadgcc-99b1021d21e5812ed01221d8fca8e8a32488a934.zip
gcc-99b1021d21e5812ed01221d8fca8e8a32488a934.tar.gz
gcc-99b1021d21e5812ed01221d8fca8e8a32488a934.tar.bz2
Fix a typo.
gcc/testsuite/ChangeLog: * gcc.dg/Warray-bounds-90.c: Fix a typo.
-rw-r--r--gcc/testsuite/gcc.dg/Warray-bounds-90.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/Warray-bounds-90.c b/gcc/testsuite/gcc.dg/Warray-bounds-90.c
index 2e72a3d..1ff6077 100644
--- a/gcc/testsuite/gcc.dg/Warray-bounds-90.c
+++ b/gcc/testsuite/gcc.dg/Warray-bounds-90.c
@@ -109,7 +109,7 @@ void warn_atomic_load (void)
long long *plli = (long long*)((char*)&elli + 1);
load (&eaclli, plli, 0); // { dg-warning "-Warray-bounds" }
plli = (long long*)((char*)&elli + 1);
- load (&eacli, plli, 0); // { dg-warning "-Warray-bounds" }
+ load (&eaclli, plli, 0); // { dg-warning "-Warray-bounds" }
plli = &elli + 1;
load (&eaclli, plli, 0); // { dg-warning "-Warray-bounds" }
}