Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:vla

261   // We can't have a VLA here, but we can have a pointer to a VLA,
263 // Make sure to evaluate VLA bounds now so that we have them for later.
724 // If the type is variably-modified, emit all the VLA sizes for it.
833 llvm::AllocaInst *vla = Builder.CreateAlloca(llvmTy, elementCount, "vla");
834 vla->setAlignment(alignment.getQuantity());
836 DeclPtr = vla;