2016-09-01 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / pr47443.c
blob47abea27dd7558061e8a0fb4d1ab76fbe6f5c4dc
1 /* PR tree-optimization/47443 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -fstack-check=generic" } */
5 static inline int bar (char *c, int i)
7 return c + i > c;
10 int foo ()
12 char c[100];
13 return (bar (c, 1));