mirror of https://github.com/YosysHQ/yosys.git
cxxrtl: don't need to specify a value for "path".
Callers of the deprecated method had a path already.
This commit is contained in:
parent
3ed2865ac5
commit
62bff3a204
|
@ -1582,7 +1582,7 @@ struct module {
|
|||
|
||||
// Compatibility method.
|
||||
#if __has_attribute(deprecated)
|
||||
__attribute__((deprecated("Use `debug_info(&items, /*scopes=*/nullptr, path);` instead. (`path` could be \"top \".)")))
|
||||
__attribute__((deprecated("Use `debug_info(&items, /*scopes=*/nullptr, path);` instead.")))
|
||||
#endif
|
||||
void debug_info(debug_items &items, std::string path) {
|
||||
debug_info(&items, /*scopes=*/nullptr, path);
|
||||
|
|
Loading…
Reference in New Issue