Document why the has_f00f_bug variable is initialised rather than placed into
the BSS (so that it can be binary-patched). Inspired by: bde
This commit is contained in:
parent
e041d3beea
commit
49bfd93f79
@ -115,7 +115,7 @@ static struct cpu_nameclass i386_cpus[] = {
|
||||
};
|
||||
|
||||
#if defined(I586_CPU) && !defined(NO_F00F_HACK)
|
||||
int has_f00f_bug = 0;
|
||||
int has_f00f_bug = 0; /* Initialized so that it can be patched. */
|
||||
#endif
|
||||
|
||||
void
|
||||
|
@ -115,7 +115,7 @@ static struct cpu_nameclass i386_cpus[] = {
|
||||
};
|
||||
|
||||
#if defined(I586_CPU) && !defined(NO_F00F_HACK)
|
||||
int has_f00f_bug = 0;
|
||||
int has_f00f_bug = 0; /* Initialized so that it can be patched. */
|
||||
#endif
|
||||
|
||||
void
|
||||
|
Loading…
x
Reference in New Issue
Block a user