private void doCompareAndJump(int ints) {
loadEnv();
mv.visitMethodInsn(INVOKEVIRTUAL, "com/googlecode/aviator/runtime/type/AviatorObject", "compare",
"(Lcom/googlecode/aviator/runtime/type/AviatorObject;Ljava/util/Map;)I");
Label l0 = makeLabel();
Label l1 = makeLabel();
mv.visitJumpInsn(ints, l0);
mv.visitFieldInsn(GETSTATIC, "com/googlecode/aviator/runtime/type/AviatorBoolean", "TRUE",
"Lcom/googlecode/aviator/runtime/type/AviatorBoolean;");
mv.visitJumpInsn(GOTO, l1);
mv.visitLabel(l0);