+2016-11-28 Segher Boessenkool <segher@kernel.crashing.org>
+
+ PR rtl-optimization/78342
+ * combine.c: Include "cfghooks.h".
+ (try_combine): If we create an unconditional trap, break the basic
+ block in two just after it, and remove the edge between; also, set
+ the *new_direct_jump_p flag so that cleanup_cfg is run.
+
2016-11-28 Segher Boessenkool <segher@kernel.crashing.org>
* simplify-rtx.c (simplify_truncation): Handle truncate of zero_extract
#include "target.h"
#include "rtl.h"
#include "tree.h"
+#include "cfghooks.h"
#include "predict.h"
#include "df.h"
#include "memmodel.h"
update_cfg_for_uncondjump (undobuf.other_insn);
}
+ if (GET_CODE (PATTERN (i3)) == TRAP_IF
+ && XEXP (PATTERN (i3), 0) == const1_rtx)
+ {
+ basic_block bb = BLOCK_FOR_INSN (i3);
+ gcc_assert (bb);
+ remove_edge (split_block (bb, i3));
+ *new_direct_jump_p = 1;
+ }
+
+ if (undobuf.other_insn
+ && GET_CODE (PATTERN (undobuf.other_insn)) == TRAP_IF
+ && XEXP (PATTERN (undobuf.other_insn), 0) == const1_rtx)
+ {
+ basic_block bb = BLOCK_FOR_INSN (undobuf.other_insn);
+ gcc_assert (bb);
+ remove_edge (split_block (bb, undobuf.other_insn));
+ *new_direct_jump_p = 1;
+ }
+
/* A noop might also need cleaning up of CFG, if it comes from the
simplification of a jump. */
if (JUMP_P (i3)