Commit 84ea618a by Sriraman Tallam Committed by Sriraman Tallam

cpuinfo.c (get_intel_cpu): Fix cpuid codes for sandybridge processors.

2013-03-07  Sriraman Tallam  <tmsriram@google.com>

	* config/i386/cpuinfo.c (get_intel_cpu): Fix cpuid codes for
	sandybridge processors.

From-SVN: r196532
parent 5daf1f80
2013-03-07 Sriraman Tallam <tmsriram@google.com>
* config/i386/cpuinfo.c (get_intel_cpu): Fix cpuid codes for
sandybridge processors.
2013-03-06 Oleg Endo <olegendo@gcc.gnu.org> 2013-03-06 Oleg Endo <olegendo@gcc.gnu.org>
PR target/56529 PR target/56529
......
...@@ -178,6 +178,7 @@ get_intel_cpu (unsigned int family, unsigned int model, unsigned int brand_id) ...@@ -178,6 +178,7 @@ get_intel_cpu (unsigned int family, unsigned int model, unsigned int brand_id)
__cpu_model.__cpu_subtype = INTEL_COREI7_WESTMERE; __cpu_model.__cpu_subtype = INTEL_COREI7_WESTMERE;
break; break;
case 0x2a: case 0x2a:
case 0x2d:
/* Sandy Bridge. */ /* Sandy Bridge. */
__cpu_model.__cpu_type = INTEL_COREI7; __cpu_model.__cpu_type = INTEL_COREI7;
__cpu_model.__cpu_subtype = INTEL_COREI7_SANDYBRIDGE; __cpu_model.__cpu_subtype = INTEL_COREI7_SANDYBRIDGE;
......
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