Revision c0ce998e target-mips/translate.c

b/target-mips/translate.c
8286 8286
#endif
8287 8287
    gen_icount_start();
8288 8288
    while (ctx.bstate == BS_NONE) {
8289
        if (unlikely(env->breakpoints)) {
8290
            for (bp = env->breakpoints; bp != NULL; bp = bp->next) {
8289
        if (unlikely(!TAILQ_EMPTY(&env->breakpoints))) {
8290
            TAILQ_FOREACH(bp, &env->breakpoints, entry) {
8291 8291
                if (bp->pc == ctx.pc) {
8292 8292
                    save_cpu_state(&ctx, 1);
8293 8293
                    ctx.bstate = BS_BRANCH;

Also available in: Unified diff