PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr47443.c
blob5a5c43f253736618dd185f44fbbf43ebe3abcd0d
1 /* PR tree-optimization/47443 */
2 /* { dg-do compile } */
3 /* { dg-require-stack-check "generic" } */
4 /* { dg-options "-O -fstack-check=generic" } */
6 static inline int bar (char *c, int i)
8 return c + i > c;
11 int foo ()
13 char c[100];
14 return (bar (c, 1));