From a3da587fc32af25217dc70b05e96d4338aacb610 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 13 May 2026 21:02:45 -0400 Subject: [PATCH] Internals: Show operator in assert --- src/V3EmitCFunc.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/V3EmitCFunc.cpp b/src/V3EmitCFunc.cpp index f324623a0..81b15a6f2 100644 --- a/src/V3EmitCFunc.cpp +++ b/src/V3EmitCFunc.cpp @@ -111,7 +111,8 @@ void EmitCFunc::emitOpName(AstNode* nodep, const string& format, AstNode* lhsp, case 'P': if (nodep->isWide()) { UASSERT_OBJ(m_wideTempRefp, nodep, - "Wide Op w/ no temp, perhaps missing op in V3EmitC?"); + "Wide op " << nodep->prettyTypeName() + << " w/ no temp, perhaps missing op in V3EmitC?"); commaOut(); putOut(); if (!m_wideTempRefp->selfPointer().isEmpty()) {