Searched refs:LegalIntWidths (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Target/
H A DTargetData.h82 SmallVector<unsigned char, 8> LegalIntWidths; ///< Legal Integers. member in class:llvm::TargetData
148 LegalIntWidths(TD.LegalIntWidths),
172 for (unsigned i = 0, e = (unsigned)LegalIntWidths.size(); i != e; ++i)
173 if (LegalIntWidths[i] == Width)
192 for (unsigned i = 0, e = (unsigned)LegalIntWidths.size(); i != e; ++i)
193 if (Width <= LegalIntWidths[i])
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/
H A DTargetData.cpp273 td->LegalIntWidths.push_back(Width);
457 if (!LegalIntWidths.empty()) {
458 OS << "-n" << (unsigned)LegalIntWidths[0];
460 for (unsigned i = 1, e = LegalIntWidths.size(); i != e; ++i)
461 OS << ':' << (unsigned)LegalIntWidths[i];

Completed in 177 milliseconds