[PATCH] D22841: Add a pass to bugpoint to make it transform conditional jumps into unconditional jumps.
Daniel Berlin via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 26 18:58:23 PDT 2016
dberlin marked 7 inline comments as done.
================
Comment at: tools/bugpoint/CrashDebugger.cpp:446
@@ +445,3 @@
+ ConstantFoldTerminator(BB);
+ MergeBlockIntoPredecessor(BB);
+ }
----------------
majnemer wrote:
> Is it possible for `MergeBlockIntoPredecessor` to destroy a block that we haven't yet processed in `BBs`?
As far as i can tell: No.
It only can destroy block we are processing.
https://reviews.llvm.org/D22841
More information about the llvm-commits
mailing list