* [Qemu-devel] [patch] i386-user compile fix
@ 2005-04-24 0:12 Paul Brook
0 siblings, 0 replies; only message in thread
From: Paul Brook @ 2005-04-24 0:12 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 132 bytes --]
The i386-user target doesn't compile, giving errors about undefined symbol
EAX. The attached patch conditionalizes the uses.
Paul
[-- Attachment #2: patch.qemu_i386_user --]
[-- Type: text/x-diff, Size: 1272 bytes --]
Index: cpu-exec.c
===================================================================
RCS file: /cvsroot/qemu/qemu/cpu-exec.c,v
retrieving revision 1.54
diff -u -p -r1.54 cpu-exec.c
--- cpu-exec.c 23 Apr 2005 18:16:07 -0000 1.54
+++ cpu-exec.c 23 Apr 2005 21:39:31 -0000
@@ -322,14 +322,30 @@ int cpu_exec(CPUState *env1)
if ((loglevel & CPU_LOG_EXEC)) {
#if defined(TARGET_I386)
/* restore flags in standard format */
+#ifdef reg_EAX
env->regs[R_EAX] = EAX;
+#endif
+#ifdef reg_EBX
env->regs[R_EBX] = EBX;
+#endif
+#ifdef reg_ECX
env->regs[R_ECX] = ECX;
+#endif
+#ifdef reg_EDX
env->regs[R_EDX] = EDX;
+#endif
+#ifdef reg_ESI
env->regs[R_ESI] = ESI;
+#endif
+#ifdef reg_EDI
env->regs[R_EDI] = EDI;
+#endif
+#ifdef reg_EBP
env->regs[R_EBP] = EBP;
+#endif
+#ifdef reg_ESP
env->regs[R_ESP] = ESP;
+#endif
env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-04-24 0:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-24 0:12 [Qemu-devel] [patch] i386-user compile fix Paul Brook
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.