llvm-6502/test/Transforms/IPConstantProp/deadarg.ll
2008-03-01 09:15:35 +00:00

7 lines
144 B
LLVM

; RUN: llvm-as < %s | opt -ipconstprop -disable-output
define internal void @foo(i32 %X) {
call void @foo( i32 %X )
ret void
}