home *** CD-ROM | disk | FTP | other *** search
- *** ../f77/src/f77pass1/optloop.c.orig Tue Oct 29 15:16:09 1985
- --- ../f77/src/f77pass1/optloop.c Wed Oct 30 20:26:44 1985
- ***************
- *** 660,665
- return YES;
-
- if (ISREAL(p->constblock.vtype))
- if (abs(p->constblock.const.cd[0]) <= 1.0)
- return YES;
-
-
- --- 660,666 -----
- return YES;
-
- if (ISREAL(p->constblock.vtype))
- + #ifndef GFLOAT
- if (abs(p->constblock.const.cd[0]) <= 1.0)
- #else GFLOAT
- if (p->constblock.vtype==TYREAL) {
- ***************
- *** 661,666
-
- if (ISREAL(p->constblock.vtype))
- if (abs(p->constblock.const.cd[0]) <= 1.0)
- return YES;
-
- return NO;
-
- --- 662,673 -----
- if (ISREAL(p->constblock.vtype))
- #ifndef GFLOAT
- if (abs(p->constblock.const.cd[0]) <= 1.0)
- + #else GFLOAT
- + if (p->constblock.vtype==TYREAL) {
- + if (abs(p->constblock.const.cr[0]) <= 1.0) return YES;
- + }
- + else if (abs(p->constblock.const.cd[0]) <= 1.0)
- + #endif GFLOAT
- return YES;
-
- return NO;
-