From 54922c036a4e3d28efd0b3502b1b699af1c77828 Mon Sep 17 00:00:00 2001 From: github action Date: Sun, 14 Jan 2024 00:53:31 +0000 Subject: [PATCH] Apply 'make format' --- src/V3TraceDecl.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/V3TraceDecl.cpp b/src/V3TraceDecl.cpp index 0735e6dce..63302b5c2 100644 --- a/src/V3TraceDecl.cpp +++ b/src/V3TraceDecl.cpp @@ -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};