blob: f655913f3d129c7a5c4b60d81b60410b9178923d [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
Dan Gohman907857d2010-08-04 23:37:55 +00003; CHECK: Just Ref: call void @ro() <-> call void @f0()
Dan Gohman3dcc91e2010-08-04 22:56:29 +00004
5declare void @f0()
6declare void @ro() readonly
7
8define void @test() {
9 call void @f0()
10 call void @ro()
11 ret void
12}