[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / FunctionAttrs / int_sideeffect.ll
blob4c33116b57c98e5872edfcb95d1f67d397ed6af5
1 ; RUN: opt -S < %s -function-attrs | FileCheck %s
2 ; RUN: opt -S < %s -passes=function-attrs | FileCheck %s
4 ; CHECK: Function Attrs
5 ; CHECK-SAME: inaccessiblememonly
6 ; CHECK-NEXT: declare void @llvm.sideeffect()
7 declare void @llvm.sideeffect()
9 ; Don't add readnone or similar attributes when an @llvm.sideeffect() intrinsic
10 ; is present.
12 ; CHECK: Function Attrs
13 ; CHECK-NOT: readnone
14 ; CHECK: define void @test()
15 define void @test() {
16     call void @llvm.sideeffect()
17     ret void
20 ; CHECK: Function Attrs
21 ; CHECK-NOT: readnone
22 ; CHECK: define void @loop()
23 define void @loop() {
24     br label %loop
26 loop:
27     call void @llvm.sideeffect()
28     br label %loop