Apply 'make format'

This commit is contained in:
github action 2024-01-14 00:53:31 +00:00
parent 2e999a5441
commit 54922c036a
1 changed files with 4 additions and 5 deletions

View File

@ -260,11 +260,10 @@ class TraceDeclVisitor final : public VNVisitor {
// Compute the type of the scope being fixed up
const AstCell* const cellp = scopep->aboveCellp();
const VTracePrefixType scopeType = cellp ? (
VN_IS((cellp->modp()), Iface)
? VTracePrefixType::SCOPE_INTERFACE
: VTracePrefixType::SCOPE_MODULE
) : VTracePrefixType::SCOPE_MODULE;
const VTracePrefixType scopeType
= cellp ? (VN_IS((cellp->modp()), Iface) ? VTracePrefixType::SCOPE_INTERFACE
: VTracePrefixType::SCOPE_MODULE)
: VTracePrefixType::SCOPE_MODULE;
// Push the scope prefix
AstNodeStmt* const pushp = new AstTracePushPrefix{flp, name, scopeType};