aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/FunctionResolve/2003-07-23-CPR-Reference.ll
blob: e1a29ec28246f1ca5a0eb1a2410b92a1839aa04c (plain)
1
2
3
4
5
6
7
8
9
10
; 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)