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:
jmallett 2002-08-14 18:07:09 +00:00
parent e041d3beea
commit 49bfd93f79
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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