aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2021-09-10 17:32:04 +0200
committerGitHub <noreply@github.com>2021-09-10 17:32:04 +0200
commit396918cc30a870e6d6049bdda1ddf8176ec5d116 (patch)
tree3a7fdd849cb41443ec26fc002c35fb9d8b3b4387 /kernel/rtlil.h
parent33749f1e3aea0d0ee4d1b5b29eb00f3e4f4bae41 (diff)
parent4708907be8249d93a2aefbb36e4420a8b2054df3 (diff)
downloadyosys-396918cc30a870e6d6049bdda1ddf8176ec5d116.tar.gz
yosys-396918cc30a870e6d6049bdda1ddf8176ec5d116.tar.bz2
yosys-396918cc30a870e6d6049bdda1ddf8176ec5d116.zip
Merge pull request #3001 from YosysHQ/claire/sigcheck
Add additional check to SigSpec
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 50707c0ae..06198b26a 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -965,9 +965,9 @@ public:
unsigned int hash() const { if (!hash_) updhash(); return hash_; };
#ifndef NDEBUG
- void check() const;
+ void check(Module *mod = nullptr) const;
#else
- void check() const { }
+ void check(Module *mod = nullptr) const { }
#endif
};