llvm-6502/test/Transforms/FunctionResolve/2003-07-23-CPR-Reference.ll
2006-12-02 04:23:10 +00:00

11 lines
333 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | opt -funcresolve | llvm-dis | not grep foo
; The funcresolve pass was resolving the two foo's together in this test,
; adding a ConstantPointerRef to one of them. Then because of this
; reference, it wasn't able to delete the dead declaration. :(
declare int %foo(...)
declare int %foo(int)