re PR target/32787 (Sun Studio 12 Undefined symbol addl)
2007-11-06 Rask Ingemann Lambertsen <rask@sygehus.dk> PR target/32787 * config/i386/driver-i386.c: Test for __GNUC__ instead of GCC_VERSION which is always defined. From-SVN: r129944
This commit is contained in:
parent
b3519e7c8a
commit
a6ecb05c86
@ -1,3 +1,9 @@
|
||||
2007-11-06 Rask Ingemann Lambertsen <rask@sygehus.dk>
|
||||
|
||||
PR target/32787
|
||||
* config/i386/driver-i386.c: Test for __GNUC__ instead of
|
||||
GCC_VERSION which is always defined.
|
||||
|
||||
2007-11-06 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
|
||||
|
||||
PR target/30961
|
||||
|
@ -25,7 +25,7 @@ along with GCC; see the file COPYING3. If not see
|
||||
|
||||
const char *host_detect_local_cpu (int argc, const char **argv);
|
||||
|
||||
#ifdef GCC_VERSION
|
||||
#ifdef __GNUC__
|
||||
#include "cpuid.h"
|
||||
|
||||
/* Returns parameters that describe L1_ASSOC associative cache of size
|
||||
@ -416,4 +416,4 @@ const char *host_detect_local_cpu (int argc, const char **argv)
|
||||
|
||||
return concat ("-m", argv[0], "=", cpu, NULL);
|
||||
}
|
||||
#endif /* GCC_VERSION */
|
||||
#endif /* __GNUC__ */
|
||||
|
Loading…
Reference in New Issue
Block a user