Compile fix for cpu/x86.c logging
This commit is contained in:
@@ -83,7 +83,9 @@ int fpu_cycles = 0;
|
||||
int in_lock = 0;
|
||||
|
||||
#ifdef ENABLE_X86_LOG
|
||||
#if 0
|
||||
void dumpregs(int);
|
||||
#endif
|
||||
|
||||
int x86_do_log = ENABLE_X86_LOG;
|
||||
int indump = 0;
|
||||
@@ -93,13 +95,14 @@ x86_log(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
if (x808x_do_log) {
|
||||
if (x86_do_log) {
|
||||
va_start(ap, fmt);
|
||||
pclog_ex(fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
void
|
||||
dumpregs(int force)
|
||||
{
|
||||
@@ -144,6 +147,7 @@ dumpregs(int force)
|
||||
x87_dumpregs();
|
||||
indump = 0;
|
||||
}
|
||||
#endif
|
||||
#else
|
||||
# define x86_log(fmt, ...)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user