mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
a62270de2c
The reversion apparently deleted the test/Transforms directory. Will be re-reverting again. llvm-svn: 358552
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
|
|
}
|