Apply 'make format'

This commit is contained in:
github action 2026-03-26 17:28:43 +00:00
parent f369a629c7
commit 37a316f0f8
3 changed files with 5 additions and 6 deletions

View File

@ -292,9 +292,8 @@ class LinkIncVisitor final : public VNVisitor {
void prepost_expr_visit(AstNodeTriop* nodep) {
iterateChildren(nodep);
if (m_unsupportedHere) {
nodep->v3warn(E_UNSUPPORTED,
"Unsupported: Pre/post increment/decrement operator"
" within a logical expression (&&, ||, ?:, etc.)");
nodep->v3warn(E_UNSUPPORTED, "Unsupported: Pre/post increment/decrement operator"
" within a logical expression (&&, ||, ?:, etc.)");
return;
}
AstNodeExpr* const readp = nodep->rhsp();

View File

@ -1047,8 +1047,8 @@ class TimingControlVisitor final : public VNVisitor {
// go out of scope before that happens
if (!nodep->sentreep()) {
nodep->v3warn(E_UNSUPPORTED,
"Unsupported: Event control with implicit sensitivity (@*)"
" in this context; use an explicit sensitivity list instead");
"Unsupported: Event control with implicit sensitivity (@*)"
" in this context; use an explicit sensitivity list instead");
VL_DO_DANGLING(pushDeletep(nodep->unlinkFrBack()), nodep);
return;
}

View File

@ -1667,7 +1667,7 @@ class WidthVisitor final : public VNVisitor {
}
// queue_slice[#:$] and queue_bitsel[$] etc handled in V3WidthSel
nodep->v3warn(E_UNSUPPORTED,
"Unsupported: Unbounded ('$') outside of queue or string operations");
"Unsupported: Unbounded ('$') outside of queue or string operations");
}
void visit(AstInferredDisable* nodep) override {
assertAtExpr(nodep);