Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr71104-2.c
blob03c52a338c3eae9364e6899720d81bfcc17e4e75
1 /* { dg-do compile } */
3 struct Foo { char c[1024]; };
4 void foo(void);
5 struct Foo baz(void) __attribute__((returns_twice));
6 struct Foo *p;
8 void bar(void)
10 foo();
11 *p = baz();