Home | History | Annotate | Download | only in Support

Lines Matching full:targets

69   // Provide special warning when no targets are initialized.
71 Error = "Unable to find target for this triple (no targets are registered)";
79 Error = std::string("Cannot choose between targets \"") +
88 Error = "No available targets are compatible with this triple, "
89 "see -version for the available targets.";
109 // Add to the list of targets.
125 std::vector<std::pair<StringRef, const Target*> > Targets;
130 Targets.push_back(std::make_pair(I->getName(), &*I));
131 Width = std::max(Width, Targets.back().first.size());
133 array_pod_sort(Targets.begin(), Targets.end(), TargetArraySortFn);
136 OS << " Registered Targets:\n";
137 for (unsigned i = 0, e = Targets.size(); i != e; ++i) {
138 OS << " " << Targets[i].first;
139 OS.indent(Width - Targets[i].first.size()) << " - "
140 << Targets[i].second->getShortDescription() << '\n';
142 if (Targets.empty())