mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Fix bound queue printing (#5032)
This commit is contained in:
parent
3f625fc359
commit
8e0301c287
@ -891,8 +891,8 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
template <class T_Value>
|
||||
std::string VL_TO_STRING(const VlQueue<T_Value>& obj) {
|
||||
template <class T_Value, size_t T_MaxSize>
|
||||
std::string VL_TO_STRING(const VlQueue<T_Value, T_MaxSize>& obj) {
|
||||
return obj.to_string();
|
||||
}
|
||||
|
||||
|
@ -104,6 +104,7 @@ module t (/*AUTOARG*/
|
||||
begin
|
||||
// Strings
|
||||
string q[$];
|
||||
string p[$:3];
|
||||
string v;
|
||||
int j = 0;
|
||||
|
||||
@ -134,6 +135,7 @@ module t (/*AUTOARG*/
|
||||
//Unsup: `checkh(q[$], "b2");
|
||||
|
||||
v = $sformatf("%p", q); `checks(v, "'{\"f2\", \"f1\", \"b1\", \"b2\"} ");
|
||||
v = $sformatf("%p", p); `checks(v, "'{}");
|
||||
|
||||
//Unsup: q.delete(1);
|
||||
//Unsup: v = q[1]; `checks(v, "b1");
|
||||
|
Loading…
Reference in New Issue
Block a user