[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / LoopDeletion / no-exit-blocks.ll
blob1e68d4f95301c6a25ffedcaef223bdb9818104c8
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes
2 ; RUN: opt < %s -loop-deletion -S | FileCheck %s
4 define void @f() #0 {
5 ; CHECK: Function Attrs: mustprogress
6 ; CHECK-LABEL: define {{[^@]+}}@f
7 ; CHECK-SAME: () [[ATTR0:#.*]] {
8 ; CHECK-NEXT:    unreachable
10   br label %1
12   %.01 = phi i32 [ 1, %0 ], [ %3, %2 ]
13   %.0 = phi i32 [ 1, %0 ], [ %3, %2 ]
14   br label %2
16   %3 = add nsw i32 %.01, %.0
17   br label %1
20 attributes #0 = { mustprogress }