This commit is contained in:
Ethan Sifferman 2026-04-23 17:21:07 -07:00
parent 37fa7716f9
commit 873d2c616c
1 changed files with 2 additions and 2 deletions

View File

@ -906,8 +906,8 @@ class DelayedVisitor final : public VNVisitor {
// Create a properly-sized 32-bit unsigned constant (post-WidthCommit, width==widthMin).
AstConst* makeU32Const(FileLine* flp, const AstNode* contextp, uint32_t value) {
AstConst* const cp = new AstConst{
flp, AstConst::DTyped{}, contextp->findBasicDType(VBasicDTypeKwd::UINT32)};
AstConst* const cp = new AstConst{flp, AstConst::DTyped{},
contextp->findBasicDType(VBasicDTypeKwd::UINT32)};
cp->num().setLong(value);
return cp;
}