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

References

lib/Transforms/Coroutines/CoroFrame.cpp
  353     if ((StructSize & (TyAlign - 1)) != 0)
  354       StructSize = alignTo(StructSize, TyAlign);
  354       StructSize = alignTo(StructSize, TyAlign);
  356     StructSize += DL.getTypeAllocSize(Ty); // Consume space for this data item.
  366     auto Natural = alignTo(StructSize, TyAlign);
  367     auto Forced = alignTo(StructSize, ForcedAlignment);
  371       return std::max(Natural, Forced) - StructSize;