[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / LoopUnswitch / convergent-hoist-modified.ll
blobbb77f4ca8b75b1cb9c0fd17c6417824c72c2b08d
1 ; RUN: opt -loop-unswitch -enable-new-pm=0 %s -S | FileCheck %s
3 ; When hoisting simple values out from a loop, and not being able to unswitch
4 ; the loop due to the convergent call, the pass would return an incorrect
5 ; Modified status. This was caught by the pass return status check that is
6 ; hidden under EXPENSIVE_CHECKS.
8 ; CHECK-LABEL: entry:
9 ; CHECK-NEXT: %0 = call i32 @llvm.objectsize.i32.p0i8(i8* bitcast (%struct.anon* @b to i8*), i1 false, i1 false, i1 false)
10 ; CHECK-NEXT: %1 = icmp uge i32 %0, 1
11 ; CHECK-NEXT: br label %for.cond
13 %struct.anon = type { i16 }
15 @b = global %struct.anon zeroinitializer, align 1
17 ; Function Attrs: nounwind
18 define i16 @c() #0 {
19 entry:
20   br label %for.cond
22 for.cond:                                         ; preds = %cont, %entry
23   br label %for.inc
25 for.inc:                                          ; preds = %for.cond
26   %0 = call i32 @llvm.objectsize.i32.p0i8(i8* bitcast (%struct.anon* @b to i8*), i1 false, i1 false, i1 false)
27   %1 = icmp uge i32 %0, 1
28   br i1 %1, label %cont, label %cont
30 cont:                                             ; preds = %for.inc
31   call void @conv() convergent
32   %2 = load i16, i16* getelementptr inbounds (%struct.anon, %struct.anon* @b, i32 0, i32 0), align 1
33   br label %for.cond
36 ; Function Attrs: nounwind readnone speculatable willreturn
37 declare i32 @llvm.objectsize.i32.p0i8(i8*, i1 immarg, i1 immarg, i1 immarg) #1
39 declare void @conv() convergent
41 attributes #0 = { nounwind }
42 attributes #1 = { nounwind readnone speculatable willreturn }