mirror of
https://github.com/verilator/verilator.git
synced 2025-04-04 19:52:39 +00:00
parent
5073f208af
commit
2e999a5441
@ -4,6 +4,7 @@ under the Developer Certificate of Origin (https://developercertificate.org/).
|
|||||||
Please see the Verilator manual for 200+ additional contributors. Thanks to all.
|
Please see the Verilator manual for 200+ additional contributors. Thanks to all.
|
||||||
|
|
||||||
Adam Bagley
|
Adam Bagley
|
||||||
|
Adrian Sampson
|
||||||
Adrien Le Masle
|
Adrien Le Masle
|
||||||
Ahmed El-Mahmoudy
|
Ahmed El-Mahmoudy
|
||||||
Aleksander Kiryk
|
Aleksander Kiryk
|
||||||
|
@ -259,10 +259,12 @@ class TraceDeclVisitor final : public VNVisitor {
|
|||||||
const std::string name = path.substr(pos == string::npos ? 0 : pos + 1);
|
const std::string name = path.substr(pos == string::npos ? 0 : pos + 1);
|
||||||
|
|
||||||
// Compute the type of the scope being fixed up
|
// Compute the type of the scope being fixed up
|
||||||
AstNodeModule* const modp = scopep->aboveCellp()->modp();
|
const AstCell* const cellp = scopep->aboveCellp();
|
||||||
const VTracePrefixType scopeType = VN_IS(modp, Iface)
|
const VTracePrefixType scopeType = cellp ? (
|
||||||
? VTracePrefixType::SCOPE_INTERFACE
|
VN_IS((cellp->modp()), Iface)
|
||||||
: VTracePrefixType::SCOPE_MODULE;
|
? VTracePrefixType::SCOPE_INTERFACE
|
||||||
|
: VTracePrefixType::SCOPE_MODULE
|
||||||
|
) : VTracePrefixType::SCOPE_MODULE;
|
||||||
|
|
||||||
// Push the scope prefix
|
// Push the scope prefix
|
||||||
AstNodeStmt* const pushp = new AstTracePushPrefix{flp, name, scopeType};
|
AstNodeStmt* const pushp = new AstTracePushPrefix{flp, name, scopeType};
|
||||||
|
Loading…
Reference in New Issue
Block a user