Conservative fix for PR17827 - don't optimize a shift + and + compare sequence where...
[oota-llvm.git] / test / Transforms / FunctionAttrs / readattrs.ll
1 ; RUN: opt < %s -functionattrs -S | FileCheck %s
2 @x = global i32 0
3
4 declare void @test1_1(i8* %x1_1, i8* readonly %y1_1, ...)
5
6 ; CHECK: define void @test1_2(i8* %x1_2, i8* readonly %y1_2, i8* %z1_2)
7 define void @test1_2(i8* %x1_2, i8* %y1_2, i8* %z1_2) {
8   call void (i8*, i8*, ...)* @test1_1(i8* %x1_2, i8* %y1_2, i8* %z1_2)
9   store i32 0, i32* @x
10   ret void
11 }
12
13 ; CHECK: define i8* @test2(i8* readnone %p)
14 define i8* @test2(i8* %p) {
15   store i32 0, i32* @x
16   ret i8* %p
17 }
18
19 ; CHECK: define i1 @test3(i8* readnone %p, i8* readnone %q)
20 define i1 @test3(i8* %p, i8* %q) {
21   %A = icmp ult i8* %p, %q
22   ret i1 %A
23 }
24
25 declare void @test4_1(i8* nocapture) readonly
26
27 ; CHECK: define void @test4_2(i8* nocapture readonly %p)
28 define void @test4_2(i8* %p) {
29   call void @test4_1(i8* %p)
30   ret void
31 }
32
33 ; CHECK: define void @test5(i8** nocapture %p, i8* %q)
34 ; Missed optz'n: we could make %q readnone, but don't break test6!
35 define void @test5(i8** %p, i8* %q) {
36   store i8* %q, i8** %p
37   ret void
38 }
39
40 declare void @test6_1()
41 ; CHECK: define void @test6_2(i8** nocapture %p, i8* %q)
42 ; This is not a missed optz'n.
43 define void @test6_2(i8** %p, i8* %q) {
44   store i8* %q, i8** %p
45   call void @test6_1()
46   ret void
47 }