Deleted Added
full compact
strtorxL.c (165744) strtorxL.c (219557)
1/****************************************************************
2
3The author of this software is David M. Gay.
4
5Copyright (C) 1998, 2000 by Lucent Technologies
6All Rights Reserved
7
8Permission to use, copy, modify, and distribute this software and

--- 56 unchanged lines hidden (view full) ---

65 case STRTOG_NaNbits:
66 L[_0] = (exp + 0x3fff + 63) << 16;
67 L[_1] = bits[1];
68 L[_2] = bits[0];
69 break;
70
71 case STRTOG_Infinite:
72 L[_0] = 0x7fff << 16;
1/****************************************************************
2
3The author of this software is David M. Gay.
4
5Copyright (C) 1998, 2000 by Lucent Technologies
6All Rights Reserved
7
8Permission to use, copy, modify, and distribute this software and

--- 56 unchanged lines hidden (view full) ---

65 case STRTOG_NaNbits:
66 L[_0] = (exp + 0x3fff + 63) << 16;
67 L[_1] = bits[1];
68 L[_2] = bits[0];
69 break;
70
71 case STRTOG_Infinite:
72 L[_0] = 0x7fff << 16;
73 L[_1] = L[_2] = 0;
73 L[_1] = 0x80000000;
74 L[_2] = 0;
74 break;
75
76 case STRTOG_NaN:
77 L[0] = ld_QNAN0;
78 L[1] = ld_QNAN1;
79 L[2] = ld_QNAN2;
80 }
81 if (k & STRTOG_Neg)

--- 26 unchanged lines hidden ---
75 break;
76
77 case STRTOG_NaN:
78 L[0] = ld_QNAN0;
79 L[1] = ld_QNAN1;
80 L[2] = ld_QNAN2;
81 }
82 if (k & STRTOG_Neg)

--- 26 unchanged lines hidden ---