summaryrefslogtreecommitdiff
path: root/target-i386/op.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-01-23 20:55:36 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-01-23 20:55:36 +0000
commit82e41634cdf063fae727fdb1563479d2209f79ee (patch)
treec2e92556a14bc64481d2304fcacc2940f47ca723 /target-i386/op.c
parentbd3fae3df6233729591b65f7c9f008d4182f6b44 (diff)
downloadqemu-82e41634cdf063fae727fdb1563479d2209f79ee.zip
avoid empty op
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1239 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r--target-i386/op.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target-i386/op.c b/target-i386/op.c
index 71365b5c2d..79545b51a9 100644
--- a/target-i386/op.c
+++ b/target-i386/op.c
@@ -1198,12 +1198,12 @@ void OPPROTO op_movl_crN_T0(void)
helper_movl_crN_T0(PARAM1);
}
+#if !defined(CONFIG_USER_ONLY)
void OPPROTO op_movtl_T0_cr8(void)
{
-#if !defined(CONFIG_USER_ONLY)
T0 = cpu_get_apic_tpr(env);
-#endif
}
+#endif
/* DR registers access */
void OPPROTO op_movl_drN_T0(void)