[gnu.gcc.bug] possible bug in gcc 1.36

phil@DECWRL.DEC.COM (Phil Hochstetler) (11/30/89)

Bug found by visual inspection.  In the file "math-68881.h" at line 282 is
the line:

	  if (i & 1 == 0)			/* even */

I believe the line should be:

	  if ((i & 1) == 0)			/* even */

---
Phil Hochstetler		UUCP:  uunet!sequent!phil
Sequent Computer Systems
Beaverton, Oregon