llvm-6502/test/Transforms/IPConstantProp/deadarg.ll

8 lines
136 B
LLVM
Raw Normal View History

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