From: Serguei Katkov Date: Wed, 10 Jul 2019 08:25:48 +0000 (+0000) Subject: [SimpleLoopUnswitch] Add a test case exposing a bug X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a54df3d63c64e17661ee02afeb31cf3e44a63b3f;p=llvm [SimpleLoopUnswitch] Add a test case exposing a bug This test exposes a bug in SimpleLoopUnswitch that leads to a crash on assert(SuccessorsCount > 1 && "Cannot unswitch a condition without multiple distinct successors!"); when SimpleLoopUnswitch considers unswitching of a loop by a switch with one successor. Fix will be submitted soon. Patch Author: Daniil Suchkov. Reviewers: reames, asbirlea, skatkov Reviewed By: skatkov Subscribers: zzheng, llvm-commits Differential Revision: https://reviews.llvm.org/D64403 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365600 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-redundant-switch.ll b/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-redundant-switch.ll new file mode 100644 index 00000000000..3624f5b9de6 --- /dev/null +++ b/test/Transforms/SimpleLoopUnswitch/nontrivial-unswitch-redundant-switch.ll @@ -0,0 +1,25 @@ +; REQUIRES: asserts +; XFAIL: * +; RUN: opt -passes='unswitch' -disable-output -S < %s +; RUN: opt -simple-loop-unswitch -enable-nontrivial-unswitch -disable-output -S < %s + +; This loop shouldn't trigger asserts in SimpleLoopUnswitch. +define void @test_redundant_switch(i1* %ptr, i32 %cond) { +entry: + br label %loop_begin + +loop_begin: + switch i32 %cond, label %loop_body [ + i32 0, label %loop_body + ] + +loop_body: + br label %loop_latch + +loop_latch: + %v = load i1, i1* %ptr + br i1 %v, label %loop_begin, label %loop_exit + +loop_exit: + ret void +}