Apply 'make format'
This commit is contained in:
parent
f369a629c7
commit
37a316f0f8
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue