HomeSort by: relevance | last modified time | path
    Searched refs:AttrCount (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
attributes.c 31 int AttrCount = LLVMGetAttributeCountAtIndex(F, Idx);
33 if (AttrCount) {
35 (LLVMAttributeRef *)malloc(AttrCount * sizeof(LLVMAttributeRef));
66 int AttrCount = LLVMGetCallSiteAttributeCount(I, Idx);
68 if (AttrCount) {
70 AttrCount * sizeof(LLVMAttributeRef));
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 1778 unsigned AttrCount = 0;
1779 AttrCount += Attrs.hasAttribute(Attribute::ByVal);
1780 AttrCount += Attrs.hasAttribute(Attribute::InAlloca);
1781 AttrCount += Attrs.hasAttribute(Attribute::Preallocated);
1782 AttrCount += Attrs.hasAttribute(Attribute::StructRet) ||
1784 AttrCount += Attrs.hasAttribute(Attribute::Nest);
1785 AttrCount += Attrs.hasAttribute(Attribute::ByRef);
1786 Assert(AttrCount <= 1,

Completed in 23 milliseconds