summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/FunctionAttrs/readnone.ll
blob: b18aab539b62b5941ee3858e0c1e9766e75575ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: opt < %s -functionattrs -S | FileCheck %s
; RUN: opt < %s -passes=function-attrs -S | FileCheck %s

; CHECK: define void @bar(i8* nocapture readnone %0)
define void @bar(i8* readonly %0) {
  call void @foo(i8* %0)
    ret void
}

; CHECK: define void @foo(i8* nocapture readnone %0)
define void @foo(i8* readonly %0) {
  call void @bar(i8* %0)
  ret void
}
OpenPOWER on IntegriCloud