Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / Attributor / IPConstantProp / recursion.ll
blobd495baebb0d7f3e6a4d4333c1e1e7cc36992cd8b
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes --check-globals
2 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor -attributor-manifest-internal  -attributor-annotate-decl-cs  -S < %s | FileCheck %s --check-prefixes=CHECK,TUNIT
3 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor-cgscc -attributor-manifest-internal  -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,CGSCC
5 ; CHECK-NOT: %X
7 define internal i32 @foo(i32 %X) {
8 ; CGSCC: Function Attrs: mustprogress nofree nosync nounwind willreturn memory(none)
9 ; CGSCC-LABEL: define {{[^@]+}}@foo
10 ; CGSCC-SAME: () #[[ATTR0:[0-9]+]] {
11 ; CGSCC-NEXT:    ret i32 undef
13   %Y = call i32 @foo( i32 %X )            ; <i32> [#uses=1]
14   %Z = add i32 %Y, 1              ; <i32> [#uses=1]
15   ret i32 %Z
18 define void @bar() {
19 ; TUNIT: Function Attrs: mustprogress nofree norecurse nosync nounwind willreturn memory(none)
20 ; TUNIT-LABEL: define {{[^@]+}}@bar
21 ; TUNIT-SAME: () #[[ATTR0:[0-9]+]] {
22 ; TUNIT-NEXT:    ret void
24 ; CGSCC: Function Attrs: mustprogress nofree nosync nounwind willreturn memory(none)
25 ; CGSCC-LABEL: define {{[^@]+}}@bar
26 ; CGSCC-SAME: () #[[ATTR0]] {
27 ; CGSCC-NEXT:    ret void
29   call i32 @foo( i32 17 )         ; <i32>:1 [#uses=0]
30   ret void
34 ; TUNIT: attributes #[[ATTR0]] = { mustprogress nofree norecurse nosync nounwind willreturn memory(none) }
36 ; CGSCC: attributes #[[ATTR0]] = { mustprogress nofree nosync nounwind willreturn memory(none) }
38 ;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
39 ; CHECK: {{.*}}