aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr89399.c
blob: ce8fbfc4fb8a0a9b0cfc861bafb8fb9f833feb4e (plain)
1
2
3
4
5
6
7
8
9
10
extern int bar(void);

short s;

int foo(void)
{
  s = bar();
  return s;
}