blob: 94973762a1c266064ecde27beaf4a6126a2a379a [file] [log] [blame]
Ted Kremeneka0125d82011-02-16 01:57:07 +00001// RUN: %clang_cc1 -verify %s
2
3int foo() {
Ted Kremenekbac77372011-02-16 22:08:28 +00004 int x[2]; // expected-note 4 {{array 'x' declared here}}
5 int y[2]; // expected-note 2 {{array 'y' declared here}}
Ted Kremeneka0125d82011-02-16 01:57:07 +00006 int *p = &y[2]; // no-warning
7 (void) sizeof(x[2]); // no-warning
Chandler Carruth35001ca2011-02-17 21:10:52 +00008 y[2] = 2; // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
9 return x[2] + // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
10 y[-1] + // expected-warning {{array index of '-1' indexes before the beginning of the array}}
11 x[sizeof(x)] + // expected-warning {{array index of '8' indexes past the end of an array (that contains 2 elements)}}
12 x[sizeof(x) / sizeof(x[0])] + // expected-warning {{array index of '2' indexes past the end of an array (that contains 2 elements)}}
Ted Kremeneka0125d82011-02-16 01:57:07 +000013 x[sizeof(x) / sizeof(x[0]) - 1] + // no-warning
Chandler Carruth35001ca2011-02-17 21:10:52 +000014 x[sizeof(x[2])]; // expected-warning {{array index of '4' indexes past the end of an array (that contains 2 elements)}}
Ted Kremeneka0125d82011-02-16 01:57:07 +000015}
16
Ted Kremenekc71a2c02011-02-16 23:39:09 +000017// This code example tests that -Warray-bounds works with arrays that
18// are template parameters.
19template <char *sz> class Qux {
20 bool test() { return sz[0] == 'a'; }
Chandler Carruth35001ca2011-02-17 21:10:52 +000021};
22
23void f1(int a[1]) {
24 int val = a[3]; // no warning for function argumnet
25}
26
27void f2(const int (&a)[1]) { // expected-note {{declared here}}
28 int val = a[3]; // expected-warning {{array index of '3' indexes past the end of an array (that contains 1 elements)}}
29}
30
31void test() {
32 struct {
33 int a[0];
34 } s2;
35 s2.a[3] = 0; // no warning for 0-sized array
36
37 union {
38 short a[2]; // expected-note {{declared here}}
39 char c[4];
40 } u;
41 u.a[3] = 1; // expected-warning {{array index of '3' indexes past the end of an array (that contains 2 elements)}}
42 u.c[3] = 1; // no warning
43
44 const int const_subscript = 3;
45 int array[1]; // expected-note {{declared here}}
46 array[const_subscript] = 0; // expected-warning {{array index of '3' indexes past the end of an array (that contains 1 elements)}}
47
48 int *ptr;
49 ptr[3] = 0; // no warning for pointer references
50 int array2[] = { 0, 1, 2 }; // expected-note 2 {{declared here}}
51
52 array2[3] = 0; // expected-warning {{array index of '3' indexes past the end of an array (that contains 3 elements)}}
53 array2[2+2] = 0; // expected-warning {{array index of '4' indexes past the end of an array (that contains 3 elements)}}
54
55 const char *str1 = "foo";
56 char c1 = str1[5]; // no warning for pointers
57
58 const char str2[] = "foo"; // expected-note {{declared here}}
59 char c2 = str2[5]; // expected-warning {{array index of '5' indexes past the end of an array (that contains 4 elements)}}
60
61 int (*array_ptr)[1];
62 (*array_ptr)[3] = 1; // expected-warning {{array index of '3' indexes past the end of an array (that contains 1 elements)}}
63}
64
65template <int I> struct S {
66 char arr[I]; // expected-note 3 {{declared here}}
67};
68template <int I> void f() {
69 S<3> s;
70 s.arr[4] = 0; // expected-warning 2 {{array index of '4' indexes past the end of an array (that contains 3 elements)}}
71 s.arr[I] = 0; // expected-warning {{array index of '5' indexes past the end of an array (that contains 3 elements)}}
72}
73
74void test_templates() {
75 f<5>(); // expected-note {{in instantiation}}
76}