mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
3e054fe9ef
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81257 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|