Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Qc

508   QualifierCollector Qc;
509 const Type *T = Qc.strip(Ty);
512 Qc.removeObjCGCAttr();
513 Qc.removeAddressSpace();
514 Qc.removeObjCLifetime();
519 if (Qc.hasConst()) {
521 Qc.removeConst();
522 } else if (Qc.hasVolatile()) {
524 Qc.removeVolatile();
525 } else if (Qc.hasRestrict()) {
527 Qc.removeRestrict();
529 assert(Qc.empty() && "Unknown type qualifier for debug info");
533 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);