reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CodeGenFunction.cpp
 1577   CGBuilderTy &Builder = CGF.Builder;
 1579   CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType);
 1581     = llvm::ConstantInt::get(CGF.IntPtrTy, baseSize.getQuantity());
 1584     Builder.CreateElementBitCast(dest, CGF.Int8Ty, "vla.begin");
 1588   llvm::BasicBlock *originBB = CGF.Builder.GetInsertBlock();
 1589   llvm::BasicBlock *loopBB = CGF.createBasicBlock("vla-init.loop");
 1590   llvm::BasicBlock *contBB = CGF.createBasicBlock("vla-init.cont");
 1594   CGF.EmitBlock(loopBB);
 1608     Builder.CreateInBoundsGEP(CGF.Int8Ty, cur, baseSizeInChars, "vla.next");
 1615   CGF.EmitBlock(contBB);