Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr31847.c
blobcf8e04dba84cb44c238a578aa3fe732161ae6d4f
1 /* PR 31847 */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -fdump-tree-pre-all" } */
6 extern int bar(int);
8 int foo()
10 int a = 0;
11 return bar(a);
14 /* { dg-final { scan-tree-dump-not "Created value for " "pre"} } */