Fix typo.

From-SVN: r21948
This commit is contained in:
Nick Clifton 1998-08-24 14:21:27 +00:00 committed by Nick Clifton
parent 1427100a44
commit 526f15e573
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Aug 24 14:20:32 1998 Nick Clifton <nickc@cygnus.com>
* execute/bcp-1.c (main): Fix optimize test loop to count number
tests in opt_t0 not good_t0.
Thu Aug 13 00:13:55 1998 Jeffrey A Law (law@cygnus.com)
* execute/ieee/ieee.exp: Pass -ffloat-store to compiler for

View File

@ -69,7 +69,7 @@ int main()
abort();
#ifdef __OPTIMIZE__
for (i = 0; i < N(good_t0); ++i)
for (i = 0; i < N(opt_t0); ++i)
if (! (*opt_t0[i])())
abort();
#endif