From 12bbb78f64fe08d4b32a328bcc72556199581daf Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 11 Nov 2010 17:30:39 +0000 Subject: [PATCH] Support Intel processor family 6, model 0x2c. 2010-11-11 H.J. Lu * config/i386/driver-i386.c (host_detect_local_cpu): Support Intel processor family 6, model 0x2c. From-SVN: r166607 --- gcc/ChangeLog | 5 +++++ gcc/config/i386/driver-i386.c | 1 + 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d60e21c1c52..fc312299460 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-11-11 H.J. Lu + + * config/i386/driver-i386.c (host_detect_local_cpu): Support + Intel processor family 6, model 0x2c. + 2010-11-11 Joseph Myers * opts.c (warning_as_error_callback, diff --git a/gcc/config/i386/driver-i386.c b/gcc/config/i386/driver-i386.c index 288d5072662..0e13162485e 100644 --- a/gcc/config/i386/driver-i386.c +++ b/gcc/config/i386/driver-i386.c @@ -564,6 +564,7 @@ const char *host_detect_local_cpu (int argc, const char **argv) cpu = "corei7"; break; case 0x25: + case 0x2c: case 0x2f: /* Westmere. */ cpu = "corei7"; -- 2.30.2