Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp985 llvm::Value *elementCount; in EmitAutoVarAlloca() local
987 std::tie(elementCount, elementType) = getVLASize(Ty); in EmitAutoVarAlloca()
992 llvm::AllocaInst *vla = Builder.CreateAlloca(llvmTy, elementCount, "vla"); in EmitAutoVarAlloca()
/minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go602 func ArrayType(elementType Type, elementCount int) (t Type) {
603 t.C = C.LLVMArrayType(elementType.C, C.unsigned(elementCount))
610 func VectorType(elementType Type, elementCount int) (t Type) {
611 t.C = C.LLVMVectorType(elementType.C, C.unsigned(elementCount))