]> Git Repo - qemu.git/blobdiff - target-i386/shift_helper_template.h
x86: avoid AREG0 for condition code helpers
[qemu.git] / target-i386 / shift_helper_template.h
index 239ee0973c13debdf53e6b23a919906e19ed91e6..dacfdd22d469d85071484cd8edfb2f5ba8a141a6 100644 (file)
@@ -54,7 +54,7 @@ target_ulong glue(helper_rcl, SUFFIX)(target_ulong t0, target_ulong t1)
     count = rclb_table[count];
 #endif
     if (count) {
-        eflags = helper_cc_compute_all(CC_OP);
+        eflags = helper_cc_compute_all(env, CC_OP);
         t0 &= DATA_MASK;
         src = t0;
         res = (t0 << count) | ((target_ulong)(eflags & CC_C) << (count - 1));
@@ -84,7 +84,7 @@ target_ulong glue(helper_rcr, SUFFIX)(target_ulong t0, target_ulong t1)
     count = rclb_table[count];
 #endif
     if (count) {
-        eflags = helper_cc_compute_all(CC_OP);
+        eflags = helper_cc_compute_all(env, CC_OP);
         t0 &= DATA_MASK;
         src = t0;
         res = (t0 >> count) |
This page took 0.02202 seconds and 4 git commands to generate.