From 2a0ec88379915b62b3f9320133aaf9063aa9a6e3 Mon Sep 17 00:00:00 2001 From: github action Date: Sat, 1 Jan 2022 21:55:27 +0000 Subject: [PATCH] Apply 'make format' --- src/V3AstNodes.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/V3AstNodes.h b/src/V3AstNodes.h index aff7fea17..4328e391a 100644 --- a/src/V3AstNodes.h +++ b/src/V3AstNodes.h @@ -5578,10 +5578,10 @@ public: } virtual string emitC() override { return m_reset ? "VL_RAND_RESET_%nq(%nw, %P)" - : seedp() ? (urandom() ? "VL_URANDOM_SEEDED_%nq%lq(%li)" - : "VL_RANDOM_SEEDED_%nq%lq(%li)") - : isWide() ? "VL_RANDOM_%nq(%nw, %P)" // - : "VL_RANDOM_%nq()"; + : seedp() + ? (urandom() ? "VL_URANDOM_SEEDED_%nq%lq(%li)" : "VL_RANDOM_SEEDED_%nq%lq(%li)") + : isWide() ? "VL_RANDOM_%nq(%nw, %P)" // + : "VL_RANDOM_%nq()"; } virtual bool cleanOut() const override { return false; } virtual bool isGateOptimizable() const override { return false; }