Home
last modified time | relevance | path

Searched refs:wrappedContainerType (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMDialect.cpp789 auto wrappedContainerType = containerType.dyn_cast<LLVM::LLVMType>(); in getInsertExtractValueElementType() local
790 if (!wrappedContainerType) in getInsertExtractValueElementType()
804 if (wrappedContainerType.isArrayTy()) { in getInsertExtractValueElementType()
806 wrappedContainerType.getArrayNumElements()) in getInsertExtractValueElementType()
809 wrappedContainerType = wrappedContainerType.getArrayElementType(); in getInsertExtractValueElementType()
810 } else if (wrappedContainerType.isStructTy()) { in getInsertExtractValueElementType()
812 wrappedContainerType.getStructNumElements()) in getInsertExtractValueElementType()
815 wrappedContainerType = in getInsertExtractValueElementType()
816 wrappedContainerType.getStructElementType(position); in getInsertExtractValueElementType()
823 return wrappedContainerType; in getInsertExtractValueElementType()