mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
11 lines
308 B
LLVM
11 lines
308 B
LLVM
|
; RUN: as < %s | opt -funcresolve | 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)
|
||
|
|
||
|
|