[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / Transforms / FunctionAttrs / readnone.ll
blobaa074b3da11fae530cba3042f374b1ccd4aadfd3
1 ; RUN: opt < %s -function-attrs -S | FileCheck %s
2 ; RUN: opt < %s -passes=function-attrs -S | FileCheck %s
4 ; CHECK: define void @bar(i8* nocapture readnone %0)
5 define void @bar(i8* readonly %0) {
6   call void @foo(i8* %0)
7     ret void
10 ; CHECK: define void @foo(i8* nocapture readnone %0)
11 define void @foo(i8* readonly %0) {
12   call void @bar(i8* %0)
13   ret void