mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
cxxrtl: fix debug_info()
deprecation message.
This commit is contained in:
parent
b056e8c0ba
commit
54d5e56745
|
@ -1582,7 +1582,7 @@ struct module {
|
||||||
|
|
||||||
// Compatibility method.
|
// Compatibility method.
|
||||||
#if __has_attribute(deprecated)
|
#if __has_attribute(deprecated)
|
||||||
__attribute__((deprecated("Use `debug_info(path, &items, /*scopes=*/nullptr);` instead. (`path` could be \"top \".)")))
|
__attribute__((deprecated("Use `debug_info(&items, /*scopes=*/nullptr, path);` instead. (`path` could be \"top \".)")))
|
||||||
#endif
|
#endif
|
||||||
void debug_info(debug_items &items, std::string path) {
|
void debug_info(debug_items &items, std::string path) {
|
||||||
debug_info(&items, /*scopes=*/nullptr, path);
|
debug_info(&items, /*scopes=*/nullptr, path);
|
||||||
|
|
Loading…
Reference in a new issue