ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/uae_cpu/fpp.cpp
(Generate patch)

Comparing BasiliskII/src/uae_cpu/fpp.cpp (file contents):
Revision 1.2 by cebix, 1999-10-27T16:59:54Z vs.
Revision 1.3 by cebix, 1999-10-27T17:50:08Z

# Line 368 | Line 368 | static __inline__ double to_exten(uae_u3
368                  if( wrd2 | wrd3 ) {
369                          // mantissa, not fraction.
370                          uae_u64 man = ((uae_u64)wrd2 << 32) | wrd3;
371 <                        while( (man & 0x8000000000000000LL) == 0 ) {
371 >                        while( (man & UVAL64(0x8000000000000000)) == 0 ) {
372                                  man <<= 1;
373                                  exp--;
374                          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines