Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:NC

1201   Instruction *NC;
1203 NC = Builder->CreateInvoke(Callee, II->getNormalDest(),
1205 NC->takeName(II);
1206 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1207 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1210 NC = Builder->CreateCall(Callee, Args);
1211 NC->takeName(CI);
1213 cast<CallInst>(NC)->setTailCall();
1214 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
1215 cast<CallInst>(NC)->setAttributes(NewCallerPAL);
1219 Value *NV = NC;
1222 NV = NC = CastInst::Create(CastInst::BitCast, NC, OldRetTy);
1223 NC->setDebugLoc(Caller->getDebugLoc());
1229 InsertNewInstBefore(NC, *I);
1232 InsertNewInstBefore(NC, *Caller);