1 /* PR tree-optimization/86650 - -Warray-bounds missing inlining context 2 { dg-do compile } 3 { dg-options "-O2 -Warray-bounds" } */ 4 5 int a[3]; /* { dg-message "while referencing .a." } */ 6 int x; 7 foo(int i)8inline void foo (int i) 9 { 10 a[i + 1] = 123; /* { dg-warning "\\\[-Warray-bounds]" } */ 11 } 12 bar(void)13int bar (void) 14 { 15 foo (3); 16 17 return x; 18 } 19