Home | History | Annotate | Download | only in IR

Lines Matching refs:GA

412   if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
413 return new SlotTracker(GA->getParent());
1480 void AssemblyWriter::printAlias(const GlobalAlias *GA) {
1481 if (GA->isMaterializable())
1484 // Don't crash when dumping partially built GA
1485 if (!GA->hasName())
1488 PrintLLVMName(Out, GA);
1491 PrintVisibility(GA->getVisibility(), Out);
1495 PrintLinkage(GA->getLinkage(), Out);
1497 const Constant *Aliasee = GA->getAliasee();
1500 TypePrinter.print(GA->getType(), Out);
1506 printInfoComment(*GA);