* src/vm/jit/show.c (show_icmd): Show constant operand of IFxx, and
authoredwin <none@none>
Thu, 5 Oct 2006 10:41:28 +0000 (10:41 +0000)
committeredwin <none@none>
Thu, 5 Oct 2006 10:41:28 +0000 (10:41 +0000)
IF_Lxx.

src/vm/jit/show.c

index 51e7ca14f901992c273e6d2c3598d730420e62ed..517d5d30be96222fc03cef4f36c535a69315c17c 100644 (file)
@@ -1127,6 +1127,7 @@ void show_icmd(jitdata *jd, instruction *iptr, bool deadcode, int stage)
        case ICMD_IFGT:
        case ICMD_IFLE:
                SHOW_S1(iptr);
+               SHOW_INT_CONST(iptr->sx.val.i); 
                SHOW_TARGET(iptr->dst);
                break;
 
@@ -1137,6 +1138,7 @@ void show_icmd(jitdata *jd, instruction *iptr, bool deadcode, int stage)
        case ICMD_IF_LGT:
        case ICMD_IF_LLE:
                SHOW_S1(iptr);
+               SHOW_LNG_CONST(iptr->sx.val.l); 
                SHOW_TARGET(iptr->dst);
                break;