summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2017-12-14 15:08:09 +0000
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>2017-12-14 15:08:09 +0000
commit240a30d446683bc052852bdf4486dbfe037ba95b (patch)
treed1b247d46eff0c1911de5663fdd09a8efb9d419e
parent576322a3ed454f17d59e066cb0158cd5f65ed576 (diff)
downloadgcc-240a30d446683bc052852bdf4486dbfe037ba95b.tar.gz
2017-12-14 Richard Biener <rguenther@suse.de>
PR tree-optimization/65258 * gcc.dg/Warray-bounds-23.c: New testcase. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@255641 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/Warray-bounds-23.c15
2 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index bc9fa99603d..981c3a2771f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2017-12-14 Richard Biener <rguenther@suse.de>
+
+ PR tree-optimization/65258
+ * gcc.dg/Warray-bounds-23.c: New testcase.
+
2017-12-14 Tom de Vries <tom@codesourcery.com>
* lib/target-supports.exp (check_effective_target_weak_undefined): New
diff --git a/gcc/testsuite/gcc.dg/Warray-bounds-23.c b/gcc/testsuite/gcc.dg/Warray-bounds-23.c
new file mode 100644
index 00000000000..2addc358310
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/Warray-bounds-23.c
@@ -0,0 +1,15 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -Warray-bounds" } */
+
+int main()
+{
+ unsigned i, j, a[10] = {0};
+
+ for (j = 23; j < 25; j++){
+ for (i = j / 8; i --> 0;) a[i] = 0; /* { dg-bogus "array bounds" } */
+ for (i = 1; i --> 0;) __builtin_printf("%u", a[i]);
+ }
+
+ return 0;
+}
+