libc/stdlib/strtorx.c: Fix ifdef to check _LDBL_EQ_DBL.
This commit is contained in:
		
							parent
							
								
									8e62ab4ccc
								
							
						
					
					
						commit
						10677229b9
					
				|  | @ -1,3 +1,7 @@ | ||||||
|  | 2015-11-24  Steve Ellcey  <sellcey@imgtec.com> | ||||||
|  | 
 | ||||||
|  | 	* libc/stdlib/strtorx.c: Fix ifdef to check _LDBL_EQ_DBL. | ||||||
|  | 
 | ||||||
| 2015-11-23  Marcus Shawcroft  <marcus.shawcroft@arm.com> | 2015-11-23  Marcus Shawcroft  <marcus.shawcroft@arm.com> | ||||||
| 
 | 
 | ||||||
| 	* libc/machine/arm/strlen-stub.c: Adjust strlen-armv7.S selection logic. | 	* libc/machine/arm/strlen-stub.c: Adjust strlen-armv7.S selection logic. | ||||||
|  |  | ||||||
|  | @ -37,7 +37,7 @@ THIS SOFTWARE. | ||||||
| #include "gdtoa.h" | #include "gdtoa.h" | ||||||
| #include "gd_qnan.h" | #include "gd_qnan.h" | ||||||
| 
 | 
 | ||||||
| #ifdef _HAVE_LONG_DOUBLE | #if defined (_HAVE_LONG_DOUBLE) && !defined (_LDBL_EQ_DBL) | ||||||
| 
 | 
 | ||||||
| #undef _0 | #undef _0 | ||||||
| #undef _1 | #undef _1 | ||||||
|  | @ -126,4 +126,4 @@ _strtorx_r(struct _reent *p, const char *s, char **sp, int rounding, void *L) | ||||||
| 	return k; | 	return k; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| #endif /* _HAVE_LONG_DOUBLE */ | #endif /* _HAVE_LONG_DOUBLE && !_LDBL_EQ_DBL */ | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue