mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +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:
parent
6c31b40cef
commit
df9829409c
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user