reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-diff/DiffConsumer.cpp
   48   if (V->hasName()) {
   49     out << (isa<GlobalValue>(V) ? '@' : '%') << V->getName();
   49     out << (isa<GlobalValue>(V) ? '@' : '%') << V->getName();
   52   if (V->getType()->isVoidTy()) {
   53     if (isa<StoreInst>(V)) {
   55       printValue(cast<StoreInst>(V)->getPointerOperand(), isL);
   56     } else if (isa<CallInst>(V)) {
   58       printValue(cast<CallInst>(V)->getCalledValue(), isL);
   59     } else if (isa<InvokeInst>(V)) {
   61       printValue(cast<InvokeInst>(V)->getCalledValue(), isL);
   63       out << *V;
   67   if (isa<Constant>(V)) {
   68     out << *V;
   80       out << '%' << ctxt.LNumbering[V];
   85       out << '%' << ctxt.RNumbering[V];