Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:vla

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