[PATCH] D85191: [AST] Get field size in chars rather than bits in RecordLayoutBuilder.
Bevin Hansson via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 19 03:49:58 PDT 2020
ebevhan added inline comments.
================
Comment at: clang/lib/AST/RecordLayoutBuilder.cpp:1847
+ IsIncompleteArrayType ? CharUnits::Zero() : TI.first;
+ AlignIsRequired = Context.getTypeInfo(D->getType()).AlignIsRequired;
};
----------------
efriedma wrote:
> Can we fix getTypeInfoInChars so it returns all the necessary info, so we don't look up the typeinfo twice?
That feels like a hefty change since it would require changing every caller of getTypeInfoInChars. Do you want me to do that in this patch or in a separate one?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D85191/new/
https://reviews.llvm.org/D85191
More information about the cfe-commits
mailing list