[InstCombine] Signed saturation tests. NFC
[llvm-core.git] / test / Analysis / Lint / noalias-readonly.ll
blob29b288a9bba7263f8613787c5ece8aff071e4fd4
1 ; RUN: opt < %s -lint -disable-output 2>&1 | FileCheck %s
3 declare void @f1(i8* noalias readonly, i8*)
5 define void @f2(i8* %a) {
6 entry:
7   call void @f1(i8* %a, i8* %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(i8* %a, i8* %a)
16 declare void @f3(i8* noalias, i8* readonly)
18 define void @f4(i8* %a) {
19 entry:
20   call void @f3(i8* %a, i8* %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(i8* %a, i8* %a)
29 declare void @f5(i8* noalias readonly, i8* readonly)
31 define void @f6(i8* %a) {
32 entry:
33   call void @f5(i8* %a, i8* %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(i8* %a, i8* %a)