[PATCH] D108108: [LoopPeel] Allow peeling with multiple unreachable-terminated exit blocks.

Roman Lebedev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 16 02:13:09 PDT 2021


lebedev.ri added a comment.

Can you please also at least add a test with

  unreachable.exit.foo: ; preds = <...>
    call void @foo()
    br label %unreachable.exit.end
  
  unreachable.exit.bar: ; preds = <...>
    call void @bar()
    br label %unreachable.exit.end
  
  unreachable.exit.end:
    call void @baz()
    unreachable


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D108108/new/

https://reviews.llvm.org/D108108



More information about the llvm-commits mailing list