mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Remember to eraseFromParent after replaceAllUsesWith.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217536 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c9547570c2
commit
3c278b1c12
@ -2,10 +2,12 @@
|
||||
; RUN: llvm-as %p/Inputs/alias-1.ll -o %t2.o
|
||||
; RUN: ld -shared -o %t3.o -plugin %llvmshlibdir/LLVMgold.so %t2.o %t.o \
|
||||
; RUN: -plugin-opt=emit-llvm
|
||||
; RUN: llvm-dis %t3.o -o - | FileCheck %s
|
||||
; RUN: llvm-dis < %t3.o -o - | FileCheck %s
|
||||
|
||||
; CHECK-NOT: alias
|
||||
; CHECK: @a = global i32 42
|
||||
; CHECK: @b = global i32 1
|
||||
; CHECK-NEXT: @b = global i32 1
|
||||
; CHECK-NOT: alias
|
||||
|
||||
@a = weak alias i32* @b
|
||||
@b = global i32 1
|
||||
|
@ -457,6 +457,7 @@ static void drop(GlobalValue &GV) {
|
||||
/*Initializer*/ nullptr);
|
||||
Var->takeName(&Alias);
|
||||
Alias.replaceAllUsesWith(Var);
|
||||
Alias.eraseFromParent();
|
||||
}
|
||||
|
||||
static const char *getResolutionName(ld_plugin_symbol_resolution R) {
|
||||
|
Loading…
Reference in New Issue
Block a user