Lines Matching refs:NC
1117 Instruction *NC;
1119 NC = Builder->CreateInvoke(Callee, II->getNormalDest(),
1121 NC->takeName(II);
1122 cast<InvokeInst>(NC)->setCallingConv(II->getCallingConv());
1123 cast<InvokeInst>(NC)->setAttributes(NewCallerPAL);
1126 NC = Builder->CreateCall(Callee, Args);
1127 NC->takeName(CI);
1129 cast<CallInst>(NC)->setTailCall();
1130 cast<CallInst>(NC)->setCallingConv(CI->getCallingConv());
1131 cast<CallInst>(NC)->setAttributes(NewCallerPAL);
1135 Value *NV = NC;
1139 CastInst::getCastOpcode(NC, false, OldRetTy, false);
1140 NV = NC = CastInst::Create(opcode, NC, OldRetTy, "tmp");
1141 NC->setDebugLoc(Caller->getDebugLoc());
1147 InsertNewInstBefore(NC, *I);
1150 InsertNewInstBefore(NC, *Caller);