mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
c95df8b6d8
llvm-svn: 81257
9 lines
171 B
LLVM
9 lines
171 B
LLVM
; RUN: opt -adce -S < %s | not grep call
|
|
|
|
declare i32 @strlen(i8*) readonly nounwind
|
|
|
|
define void @test() {
|
|
call i32 @strlen( i8* null ) ; <i32>:1 [#uses=0]
|
|
ret void
|
|
}
|