summaryrefslogtreecommitdiff
path: root/llvm/test/Analysis/Lint/noalias-readonly.ll
blob: 05bd9dc697e17ecc5ad0ffbda58a12b8e549a83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
; RUN: opt < %s -passes=lint -disable-output 2>&1 | FileCheck %s

declare void @f1(ptr noalias readonly, ptr)

define void @f2(ptr %a) {
entry:
  call void @f1(ptr %a, ptr %a)
  ret void
}

; Lint should complain about us passing %a to both arguments, since the noalias
; argument may depend on writes to the other.
; CHECK: Unusual: noalias argument aliases another argument
; CHECK-NEXT: call void @f1(ptr %a, ptr %a)

declare void @f3(ptr noalias, ptr readonly)

define void @f4(ptr %a) {
entry:
  call void @f3(ptr %a, ptr %a)
  ret void
}

; Lint should complain about us passing %a to both arguments, since writes to
; the noalias argument may cause a dependency for the other.
; CHECK: Unusual: noalias argument aliases another argument
; CHECK-NEXT: call void @f3(ptr %a, ptr %a)

declare void @f5(ptr noalias readonly, ptr readonly)

define void @f6(ptr %a) {
entry:
  call void @f5(ptr %a, ptr %a)
  ret void
}

; Lint should not complain about passing %a to both arguments even if one is
; noalias, since they are both readonly and thus have no dependence.
; CHECK-NOT: Unusual: noalias argument aliases another argument
; CHECK-NOT: call void @f5(ptr %a, ptr %a)