llvm-6502/test/Transforms/IPConstantProp/deadarg.ll
2006-12-02 04:23:10 +00:00

8 lines
151 B
LLVM

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