1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/Transforms/FunctionResolve/2003-07-23-CPR-Reference.ll

11 lines
318 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep foo
2003-07-24 00:02:39 +02:00
; 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)