Revision c0ce998e target-cris/translate.c

b/target-cris/translate.c
3189 3189
{
3190 3190
	CPUBreakpoint *bp;
3191 3191

  
3192
	if (unlikely(env->breakpoints)) {
3193
		for (bp = env->breakpoints; bp != NULL; bp = bp->next) {
3192
	if (unlikely(!TAILQ_EMPTY(&env->breakpoints))) {
3193
		TAILQ_FOREACH(bp, &env->breakpoints, entry) {
3194 3194
			if (bp->pc == dc->pc) {
3195 3195
				cris_evaluate_flags (dc);
3196 3196
				tcg_gen_movi_tl(env_pc, dc->pc);

Also available in: Unified diff