Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / ADCE / willreturn.ll
blob69e688962b2e1875b18ba587f0cf860936e37857
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -passes=adce -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