+ /* We must copy the insns between the start of the THEN block + and the set of 'a', if they exist, since they may be needed + for the converted code as well, but we must not copy a + start-of-BB note if one is present, nor debug "insn"s. */ + + for (rtx_insn* insn = BB_HEAD (then_bb); insn && insn != insn_a + && insn != BB_END (then_bb); insn=NEXT_INSN (insn)) + {Please remove the braces: the loop body is a single stmt.
Oh, I miscounted. That makes seven then. Bernd