[mlir][int-range] Limit xor int range inference to i1 (#116968)
[llvm-project.git] / llvm / test / BugPoint / func-attrs.ll
blobe8369531f217b317e8ff966876ade03ce57deddb
1 ; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%pluginext %s -output-prefix %t -bugpoint-crashfuncattr -silence-passes
2 ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck -check-prefixes=ALL,ENABLED %s
3 ; RUN: bugpoint -disable-attribute-remove -load %llvmshlibdir/BugpointPasses%pluginext %s -output-prefix %t -bugpoint-crashfuncattr -silence-passes
4 ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck -check-prefixes=ALL,DISABLED %s
6 ; REQUIRES: plugins
8 ; ALL: f() #[[ATTRS:[0-9]+]]
9 define void @f() #0 {
10   ret void
13 ; ENABLED: attributes #[[ATTRS]] = { "bugpoint-crash" }
14 ; DISABLED: attributes #[[ATTRS]] = { noinline "bugpoint-crash" "frame-pointer"="non-leaf" }
15 attributes #0 = { noinline "bugpoint-crash" "frame-pointer"="non-leaf" }