Commit a6ecb05c by Rask Ingemann Lambertsen Committed by Rask Ingemann Lambertsen

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
parent b3519e7c
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> 2007-11-06 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
PR target/30961 PR target/30961
...@@ -25,7 +25,7 @@ along with GCC; see the file COPYING3. If not see ...@@ -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); const char *host_detect_local_cpu (int argc, const char **argv);
#ifdef GCC_VERSION #ifdef __GNUC__
#include "cpuid.h" #include "cpuid.h"
/* Returns parameters that describe L1_ASSOC associative cache of size /* 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) ...@@ -416,4 +416,4 @@ const char *host_detect_local_cpu (int argc, const char **argv)
return concat ("-m", argv[0], "=", cpu, NULL); return concat ("-m", argv[0], "=", cpu, NULL);
} }
#endif /* GCC_VERSION */ #endif /* __GNUC__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment