1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Add test for improvement of readonly to readnone,

and non-demotion of readnone to readonly.

llvm-svn: 56344
This commit is contained in:
Duncan Sands 2008-09-19 09:20:05 +00:00
parent 6c31b40cef
commit df9829409c

View File

@ -1,9 +1,18 @@
; RUN: llvm-as < %s | opt -addreadattrs | llvm-dis | grep readnone | count 2
; RUN: llvm-as < %s | opt -addreadattrs | llvm-dis | grep readnone | count 4
@x = global i32 0
declare i32 @e() readnone
define i32 @f() {
entry:
%tmp = call i32 @e( ) ; <i32> [#uses=1]
ret i32 %tmp
}
declare i32 @e() readnone
define i32 @g() readonly {
ret i32 0
}
define i32 @h() readnone {
%tmp = load i32* @x ; <i32> [#uses=1]
ret i32 %tmp
}