[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / BDCE / willreturn.ll
blobd22a00b8b1f5002be06589dc221d15cc3bef9026
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -passes=bdce -S < %s | FileCheck %s
4 declare void @may_not_return(i32) nounwind readnone
5 declare void @will_return(i32) nounwind readnone willreturn
7 define void @test(i32 %a) {
8 ; CHECK-LABEL: @test(
9 ; CHECK-NEXT:    [[B:%.*]] = add i32 [[A:%.*]], 1
10 ; CHECK-NEXT:    call void @may_not_return(i32 [[B]])
11 ; CHECK-NEXT:    ret void
13   %b = add i32 %a, 1
14   call void @may_not_return(i32 %b)
15   %c = add i32 %b, 1
16   call void @will_return(i32 %c)
17   ret void