Home | History | Annotate | Download | only in ObjCARC

Lines Matching refs:Push

94   Instruction *Push = nullptr;
99 Push = Inst;
102 // If this pop matches a push and nothing in between can autorelease,
104 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
106 DEBUG(dbgs() << "ObjCARCAPElim::OptimizeBB: Zapping push pop "
109 << " Push: " << *Push << "\n");
111 Push->eraseFromParent();
113 Push = nullptr;
117 Push = nullptr;