blob: 3bcafe02f3acfcbe3cae8e4197e75cc4444eb9c2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* This testcase used to fail because outlining_inline_function was called
too early, before rtl was generated. */
/* { dg-do compile } */
/* { dg-options "-O3 -g" } */
int foo (const int *x)
{
char a[*x];
return 0;
}
|