]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.c-torture/compile/pr89399.c
PR rtl-optimization/89399
[thirdparty/gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr89399.c
1 extern int bar(void);
2
3 short s;
4
5 int foo(void)
6 {
7 s = bar();
8 return s;
9 }
10