[all-commits] [llvm/llvm-project] a414db: Revert "[SimpleLoopUnswitch] unswitch selects"
Benjamin Kramer via All-commits
all-commits at lists.llvm.org
Wed May 10 06:16:00 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: a414db1d8e3173faca024d4532a4c655a1fe02c0
https://github.com/llvm/llvm-project/commit/a414db1d8e3173faca024d4532a4c655a1fe02c0
Author: Benjamin Kramer <benny.kra at googlemail.com>
Date: 2023-05-10 (Wed, 10 May 2023)
Changed paths:
M llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
M llvm/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-freeze.ll
M llvm/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-select.ll
M llvm/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-trivial-select.ll
Log Message:
-----------
Revert "[SimpleLoopUnswitch] unswitch selects"
This reverts commit 21f226fc4591db6e98faf380137a42067c909582. Crashes on
this test case:
define void @test2() nounwind {
entry:
br label %bb.nph
bb.nph: ; preds = %entry
%and.i13521 = and <4 x i1> undef, undef
br label %for.body
for.body: ; preds = %for.body, %bb.nph
%or.i = select <4 x i1> %and.i13521, <4 x i32> undef, <4 x i32> undef
br i1 false, label %for.body, label %for.end
for.end: ; preds = %for.body, %entry
ret void
}
More information about the All-commits
mailing list