Skip to content

Commit

Permalink
Fix little checkin problem in last patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Jun 30, 2009
1 parent 0181291 commit b38a2e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sysdeps/x86_64/multiarch/init-arch.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ __init_cpu_features (void)
unsigned int eax = __cpu_features.cpuid[COMMON_CPUID_INDEX_1].eax;
unsigned int extended_family = (eax >> 20) & 0xff;
unsigned int extended_model = (eax >> 12) & 0xf0;
if (family == 0x0f)
if (__cpu_features.family == 0x0f)
{
__cpu_features.family += extended_family;
__cpu_features.model += extended_model;
}
else if (family == 0x06)
else if (__cpu_features.family == 0x06)
__cpu_features.model += extended_model;
}
/* This spells out "AuthenticAMD". */
Expand Down

0 comments on commit b38a2e2

Please sign in to comment.