aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-21 12:41:29 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-21 12:42:02 +0200
commit361e0d62ffd90b87c94bfc98ed3cbee1a745cd8f (patch)
tree59c594e41320db3a58677857f30c21688427981d /kernel
parent1d88f1cf9f2088de7825f5292db5b40d4f73d036 (diff)
downloadyosys-361e0d62ffd90b87c94bfc98ed3cbee1a745cd8f.tar.gz
yosys-361e0d62ffd90b87c94bfc98ed3cbee1a745cd8f.tar.bz2
yosys-361e0d62ffd90b87c94bfc98ed3cbee1a745cd8f.zip
Replaced depricated NEW_WIRE macro with module->addWire() calls
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rtlil.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 3c6c97242..9b3e44179 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -141,9 +141,6 @@ namespace RTLIL
#define NEW_ID \
RTLIL::new_id(__FILE__, __LINE__, __FUNCTION__)
-#define NEW_WIRE(_mod, _width) \
- (_mod)->addWire(NEW_ID, _width)
-
template <typename T> struct sort_by_name {
bool operator()(T *a, T *b) const {
return a->name < b->name;