mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
Added DEBUG message to ObjCARC when we transform objc_initWeak(p, null) => *p = null.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
50652cd89b
commit
1ebbdcfa1f
@ -4168,6 +4168,10 @@ bool ObjCARCContract::runOnFunction(Function &F) {
|
||||
ConstantPointerNull::get(cast<PointerType>(CI->getType()));
|
||||
Changed = true;
|
||||
new StoreInst(Null, CI->getArgOperand(0), CI);
|
||||
|
||||
DEBUG(dbgs() << "OBJCARCContract: Old = " << *CI << "\n"
|
||||
<< " New = " << *Null << "\n");
|
||||
|
||||
CI->replaceAllUsesWith(Null);
|
||||
CI->eraseFromParent();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user