Revision a7812ae4 target-i386/helper_template.h

b/target-i386/helper_template.h
280 280
    count = rclb_table[count];
281 281
#endif
282 282
    if (count) {
283
        eflags = cc_table[CC_OP].compute_all();
283
        eflags = helper_cc_compute_all(CC_OP);
284 284
        t0 &= DATA_MASK;
285 285
        src = t0;
286 286
        res = (t0 << count) | ((target_ulong)(eflags & CC_C) << (count - 1));
......
309 309
    count = rclb_table[count];
310 310
#endif
311 311
    if (count) {
312
        eflags = cc_table[CC_OP].compute_all();
312
        eflags = helper_cc_compute_all(CC_OP);
313 313
        t0 &= DATA_MASK;
314 314
        src = t0;
315 315
        res = (t0 >> count) | ((target_ulong)(eflags & CC_C) << (DATA_BITS - count));

Also available in: Unified diff