2008-06-11 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/machine/_default_types.h: Fix GNUC check to handle 4.0 and greater.
This commit is contained in:
parent
24790b9cdb
commit
2b4c1b417f
@ -1,3 +1,8 @@
|
|||||||
|
2008-06-11 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
* libc/include/machine/_default_types.h: Fix GNUC check to
|
||||||
|
handle 4.0 and greater.
|
||||||
|
|
||||||
2008-06-09 Ken Werner <ken.werner@de.ibm.com>
|
2008-06-09 Ken Werner <ken.werner@de.ibm.com>
|
||||||
|
|
||||||
* libc/machine/spu/Makefile.am: Add new files.
|
* libc/machine/spu/Makefile.am: Add new files.
|
||||||
|
@ -12,8 +12,8 @@ extern "C" {
|
|||||||
/*
|
/*
|
||||||
* Guess on types by examining *_MIN / *_MAX defines.
|
* Guess on types by examining *_MIN / *_MAX defines.
|
||||||
*/
|
*/
|
||||||
#if defined(__GNUC__) && (__GNUC__ >= 3 ) \
|
#if defined(__GNUC__) && ((__GNUC__ >= 4) || (__GNUC__ >= 3 ) \
|
||||||
&& defined(__GNUC_MINOR__) && (__GNUC_MINOR__ > 2 )
|
&& defined(__GNUC_MINOR__) && (__GNUC_MINOR__ > 2 ))
|
||||||
/* GCC >= 3.3.0 has __<val>__ implicitly defined. */
|
/* GCC >= 3.3.0 has __<val>__ implicitly defined. */
|
||||||
#define __EXP(x) __##x##__
|
#define __EXP(x) __##x##__
|
||||||
#else
|
#else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user