mirror of
https://github.com/verilator/verilator.git
synced 2025-05-04 22:46:57 +00:00
Debug: Print dtype big endian correctly
This commit is contained in:
parent
9165233657
commit
de696b7092
@ -524,7 +524,7 @@ void AstAttrOf::dump(ostream& str) {
|
||||
void AstBasicDType::dump(ostream& str) {
|
||||
this->AstNodeDType::dump(str);
|
||||
str<<" kwd="<<keyword().ascii();
|
||||
if (isRanged() && !rangep()) str<<" range=["<<msb()<<":"<<lsb()<<"]";
|
||||
if (isRanged() && !rangep()) str<<" range=["<<left()<<":"<<right()<<"]";
|
||||
if (implicit()) str<<" [IMPLICIT]";
|
||||
}
|
||||
void AstCCast::dump(ostream& str) {
|
||||
|
Loading…
Reference in New Issue
Block a user