* gcc.c-torture/execute/pr59747.c (fn1): Return a value.

From-SVN: r206659
This commit is contained in:
Andreas Schwab 2014-01-16 10:14:29 +00:00 committed by Andreas Schwab
parent 4ac005badf
commit 1a22d3cb98
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2014-01-16 Andreas Schwab <schwab@linux-m68k.org>
* gcc.c-torture/execute/pr59747.c (fn1): Return a value.
2014-01-15 Richard Henderson <rth@redhat.com>
PR debug/54694

View File

@ -1,13 +1,13 @@
extern void abort (void);
extern void exit (int);
int a[6], b, c = 1, d;
int a[6], c = 1, d;
short e;
int __attribute__ ((noinline))
fn1 (int p)
{
b = a[p];
return a[p];
}
int