blob: 4ee637ee1d61c945f3817723f3a6c82b55615373 [file] [log] [blame]
Dan Gohman3dcc91e2010-08-04 22:56:29 +00001; RUN: opt < %s -aa-eval -print-all-alias-modref-info -disable-output |& FileCheck %s
2
3; CHECK: {{[[:<:]]}}Ref: call void @ro() <-> call void @f0()
4
5declare void @f0()
6declare void @ro() readonly
7
8define void @test() {
9 call void @f0()
10 call void @ro()
11 ret void
12}