[llvm] [Utils] Fix incorrect LCSSA PHI nodes when splitting critical edges with MergeIdenticalEdges (PR #131744)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 09:12:23 PDT 2025


================
@@ -438,6 +438,63 @@ define void @crit_edge(i1 %cond0, i1 %cond1) {
   EXPECT_TRUE(PDT.verify());
 }
 
+TEST(BasicBlockUtils, SplitLoopCriticalEdge) {
+  LLVMContext C;
+  std::unique_ptr<Module> M = parseIR(C, R"IR(
+declare dso_local i1 @predicate(ptr noundef %p)
+
+define dso_local ptr @Parse(ptr noundef %gp) {
----------------
nikic wrote:

Drop the unnecessary dso_local / noundef.

https://github.com/llvm/llvm-project/pull/131744


More information about the llvm-commits mailing list