aboutsummaryrefslogtreecommitdiff
path: root/target-i386/op.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-21 17:16:11 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-21 17:16:11 +0000
commit651ba608e24ec584f7cc56b0218ececf110cca87 (patch)
treebd21f4a570811a99ea8bbc67e07c450ce1e12023 /target-i386/op.c
parentbd7a7b33df84cb053f9d2ac774d77372e4065d5f (diff)
converted env access to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4516 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op.c')
-rw-r--r--target-i386/op.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/target-i386/op.c b/target-i386/op.c
index bb7a488768..392f06e013 100644
--- a/target-i386/op.c
+++ b/target-i386/op.c
@@ -147,41 +147,6 @@
#endif
-void OPPROTO op_movl_T0_env(void)
-{
- T0 = *(uint32_t *)((char *)env + PARAM1);
-}
-
-void OPPROTO op_movl_env_T0(void)
-{
- *(uint32_t *)((char *)env + PARAM1) = T0;
-}
-
-void OPPROTO op_movl_env_T1(void)
-{
- *(uint32_t *)((char *)env + PARAM1) = T1;
-}
-
-void OPPROTO op_movtl_T0_env(void)
-{
- T0 = *(target_ulong *)((char *)env + PARAM1);
-}
-
-void OPPROTO op_movtl_env_T0(void)
-{
- *(target_ulong *)((char *)env + PARAM1) = T0;
-}
-
-void OPPROTO op_movtl_T1_env(void)
-{
- T1 = *(target_ulong *)((char *)env + PARAM1);
-}
-
-void OPPROTO op_movtl_env_T1(void)
-{
- *(target_ulong *)((char *)env + PARAM1) = T1;
-}
-
/* flags handling */
void OPPROTO op_jmp_label(void)