diff options
Diffstat (limited to 'target-i386/helper_template.h')
-rw-r--r-- | target-i386/helper_template.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-i386/helper_template.h b/target-i386/helper_template.h index 1afff67e5d..1176eb9eea 100644 --- a/target-i386/helper_template.h +++ b/target-i386/helper_template.h @@ -280,7 +280,7 @@ target_ulong glue(helper_rcl, SUFFIX)(target_ulong t0, target_ulong t1) count = rclb_table[count]; #endif if (count) { - eflags = cc_table[CC_OP].compute_all(); + eflags = helper_cc_compute_all(CC_OP); t0 &= DATA_MASK; src = t0; res = (t0 << count) | ((target_ulong)(eflags & CC_C) << (count - 1)); @@ -309,7 +309,7 @@ target_ulong glue(helper_rcr, SUFFIX)(target_ulong t0, target_ulong t1) count = rclb_table[count]; #endif if (count) { - eflags = cc_table[CC_OP].compute_all(); + eflags = helper_cc_compute_all(CC_OP); t0 &= DATA_MASK; src = t0; res = (t0 >> count) | ((target_ulong)(eflags & CC_C) << (DATA_BITS - count)); |