aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/vector-subscript-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/c-c++-common/vector-subscript-3.c')
-rw-r--r--gcc-4.9/gcc/testsuite/c-c++-common/vector-subscript-3.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/c-c++-common/vector-subscript-3.c b/gcc-4.9/gcc/testsuite/c-c++-common/vector-subscript-3.c
new file mode 100644
index 000000000..22cd089ad
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/c-c++-common/vector-subscript-3.c
@@ -0,0 +1,18 @@
+/* Check the case when index is out of bound */
+/* { dg-do compile } */
+/* { dg-options "-Warray-bounds" } */
+
+#define vector __attribute__((vector_size(16) ))
+
+
+int test0(void)
+{
+ vector int a;
+ return a[10]; /* { dg-warning "index value is out of bound" } */
+}
+
+int test1(void)
+{
+ vector int a;
+ return a[-1]; /* { dg-warning "index value is out of bound" } */
+}