Internals: Dump CFunc entry points.

This commit is contained in:
Wilson Snyder 2023-11-11 20:34:51 -05:00
parent 99dbd23f1b
commit 9d7f5bdc26
2 changed files with 2 additions and 2 deletions

View File

@ -2405,6 +2405,7 @@ void AstCFunc::dump(std::ostream& str) const {
if (isVirtual()) str << " [VIRT]";
if (isCoroutine()) str << " [CORO]";
if (needProcess()) str << " [NPRC]";
if (entryPoint()) str << " [ENTRY]";
}
const char* AstCAwait::broken() const {
BROKEN_RTN(m_sensesp && !m_sensesp->brokeExists());

View File

@ -58,8 +58,7 @@ module t (/*AUTOARG*/);
p.test1();
// TODO test can't redefine constraint_mode
// TODO test can't call constraint_mode on non-constraint
// TODO for example way to test this, see t_randomize_rand_mode.v
$write("*-* All Finished *-*\n");
$finish;