mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
265752ae8f
OnlyReadsMemoryFns tables are dead! We get more, and more accurate, information from gcc via the readnone and readonly function attributes. llvm-svn: 44288
9 lines
189 B
LLVM
9 lines
189 B
LLVM
; RUN: llvm-as < %s | opt -adce | llvm-dis | not grep call
|
|
|
|
declare i32 @strlen(i8*) readonly
|
|
|
|
define void @test() {
|
|
call i32 @strlen( i8* null ) readonly ; <i32>:1 [#uses=0]
|
|
ret void
|
|
}
|