[clang] [CIR][NFC] Cleanup MissingFeature asserts in RecordLayoutBuilder (PR #161605)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 1 19:31:29 PDT 2025
================
@@ -296,9 +296,8 @@ void CIRRecordLowering::lower(bool nonVirtualBaseType) {
}
llvm::stable_sort(members);
- // TODO: implement clipTailPadding once bitfields are implemented
- assert(!cir::MissingFeatures::bitfields());
- assert(!cir::MissingFeatures::recordZeroInit());
+ // TODO: Verify bitfield clipping
+ assert(!cir::MissingFeatures::checkBitfieldClipping());
----------------
Andres-Salamanca wrote:
Thanks for marking this I’ll prepare a PR to add support for this.
https://github.com/llvm/llvm-project/pull/161605
More information about the cfe-commits
mailing list