Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NC

2834   Instruction *NC;
2836 NC = Builder->CreateInvoke(Callee, II->getNormalDest(), II->getUnwindDest(),
2838 NC->takeName(II);
2839 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
2840 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
2843 NC = Builder->CreateCall(Callee, Args, OpBundles);
2844 NC->takeName(CI);
2846 cast<CallInst>(NC)->setTailCall();
2847 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
2848 cast<CallInst>(NC)->setAttributes(NewCallerPAL);
2852 Value *NV = NC;
2855 NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy);
2856 NC->setDebugLoc(Caller->getDebugLoc());
2862 InsertNewInstBefore(NC, *I);
2865 InsertNewInstBefore(NC, *Caller);