mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
563ba88392
llvm-svn: 8558
11 lines
318 B
LLVM
11 lines
318 B
LLVM
; RUN: llvm-as < %s | 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)
|
|
|
|
|