[Coverage] MCDC: Move findIndependencePairs deferred into MCDCRecord (#121188)
[llvm-project.git] / llvm / test / Analysis / Lint / noalias-readonly.ll
blob05bd9dc697e17ecc5ad0ffbda58a12b8e549a83f
1 ; RUN: opt < %s -passes=lint -disable-output 2>&1 | FileCheck %s
3 declare void @f1(ptr noalias readonly, ptr)
5 define void @f2(ptr %a) {
6 entry:
7   call void @f1(ptr %a, ptr %a)
8   ret void
11 ; Lint should complain about us passing %a to both arguments, since the noalias
12 ; argument may depend on writes to the other.
13 ; CHECK: Unusual: noalias argument aliases another argument
14 ; CHECK-NEXT: call void @f1(ptr %a, ptr %a)
16 declare void @f3(ptr noalias, ptr readonly)
18 define void @f4(ptr %a) {
19 entry:
20   call void @f3(ptr %a, ptr %a)
21   ret void
24 ; Lint should complain about us passing %a to both arguments, since writes to
25 ; the noalias argument may cause a dependency for the other.
26 ; CHECK: Unusual: noalias argument aliases another argument
27 ; CHECK-NEXT: call void @f3(ptr %a, ptr %a)
29 declare void @f5(ptr noalias readonly, ptr readonly)
31 define void @f6(ptr %a) {
32 entry:
33   call void @f5(ptr %a, ptr %a)
34   ret void
37 ; Lint should not complain about passing %a to both arguments even if one is
38 ; noalias, since they are both readonly and thus have no dependence.
39 ; CHECK-NOT: Unusual: noalias argument aliases another argument
40 ; CHECK-NOT: call void @f5(ptr %a, ptr %a)