Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / Transforms / FunctionAttrs / readnone.ll
blobb5a5b30ae2159cb4588e76b5d9f47d9f0da1fca7
1 ; RUN: opt < %s -functionattrs -S | FileCheck %s
2 ; RUN: opt < %s -passes=function-attrs -S | FileCheck %s
4 ; CHECK: define void @bar(i8* nocapture readnone)
5 define void @bar(i8* readonly) {
6   call void @foo(i8* %0)
7     ret void
10 ; CHECK: define void @foo(i8* nocapture readnone)
11 define void @foo(i8* readonly) {
12   call void @bar(i8* %0)
13   ret void