Temporarily disable fold_redundant_jumps.

See #916 for details.
This commit is contained in:
Dan Gohman
2019-08-20 15:12:27 -07:00
parent 0d54517d35
commit 291afaf4ad

View File

@@ -57,7 +57,8 @@ pub fn relax_branches(
func.offsets.resize(func.dfg.num_ebbs());
// Start by removing redundant jumps.
fold_redundant_jumps(func, cfg, domtree);
// FIXME: Temporarily disabled due to #916.
/* fold_redundant_jumps(func, cfg, domtree); */
// Convert jumps to fallthrough instructions where possible.
fallthroughs(func);