summaryrefslogtreecommitdiffstats
path: root/target-i386/ops_template.h
diff options
context:
space:
mode:
Diffstat (limited to 'target-i386/ops_template.h')
-rw-r--r--target-i386/ops_template.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/target-i386/ops_template.h b/target-i386/ops_template.h
index 35d5b54..373b77a 100644
--- a/target-i386/ops_template.h
+++ b/target-i386/ops_template.h
@@ -339,18 +339,14 @@ void OPPROTO glue(op_jle_sub, SUFFIX)(void)
void OPPROTO glue(op_loopnz, SUFFIX)(void)
{
- int eflags;
- eflags = cc_table[CC_OP].compute_all();
- if ((DATA_TYPE)ECX != 0 && !(eflags & CC_Z))
+ if ((DATA_TYPE)ECX != 0 && !(T0 & CC_Z))
GOTO_LABEL_PARAM(1);
FORCE_RET();
}
void OPPROTO glue(op_loopz, SUFFIX)(void)
{
- int eflags;
- eflags = cc_table[CC_OP].compute_all();
- if ((DATA_TYPE)ECX != 0 && (eflags & CC_Z))
+ if ((DATA_TYPE)ECX != 0 && (T0 & CC_Z))
GOTO_LABEL_PARAM(1);
FORCE_RET();
}
OpenPOWER on IntegriCloud