diff options
author | Uros Bizjak <uros@kss-loka.si> | 2006-09-23 12:33:27 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2006-09-23 12:33:27 +0200 |
commit | 895016f63578bb45ea3432f14fb1e1a28d4744a7 (patch) | |
tree | c1c582371310483d14f679ba46e011604476b285 | |
parent | fcb99e7b22ce96bd71076e16bff502cedb310e55 (diff) | |
download | gcc-895016f63578bb45ea3432f14fb1e1a28d4744a7.zip gcc-895016f63578bb45ea3432f14fb1e1a28d4744a7.tar.gz gcc-895016f63578bb45ea3432f14fb1e1a28d4744a7.tar.bz2 |
driver-i386.c (host_detect_local_cpu): Add prototype.
* config/i386/driver-i386.c (host_detect_local_cpu): Add prototype.
From-SVN: r117169
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/driver-i386.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a62e378..8783eb0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-09-23 Uros Bizjak <uros@kss-loka.si> + + * config/i386/driver-i386.c (host_detect_local_cpu): Add prototype. + 2006-09-23 Jakub Jelinek <jakub@redhat.com> PR c/28706 diff --git a/gcc/config/i386/driver-i386.c b/gcc/config/i386/driver-i386.c index 979a6a5..6767997 100644 --- a/gcc/config/i386/driver-i386.c +++ b/gcc/config/i386/driver-i386.c @@ -22,6 +22,8 @@ Boston, MA 02110-1301, USA. */ #include "system.h" #include <stdlib.h> +const char *host_detect_local_cpu (int argc, const char **argv); + #ifdef GCC_VERSION #define cpuid(num,a,b,c,d) \ asm volatile ("xchgl %%ebx, %1; cpuid; xchgl %%ebx, %1" \ |