Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:TyAlign

2812   uint64_t TyAlign = CGF.getContext().getTypeAlign(Ty) / 8;
2813 if (TyAlign > 4) {
2814 assert((TyAlign & (TyAlign - 1)) == 0 &&
2817 AddrAsInt = Builder.CreateAdd(AddrAsInt, Builder.getInt32(TyAlign - 1));
2818 AddrAsInt = Builder.CreateAnd(AddrAsInt, Builder.getInt32(~(TyAlign - 1)));