aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorAhmed Irfan <ahmedirfan1983@gmail.com>2014-01-15 17:36:33 +0100
committerAhmed Irfan <ahmedirfan1983@gmail.com>2014-01-15 17:36:33 +0100
commit3a1490888d05ac49d82aebad9ec6979aae32a8b0 (patch)
tree90e4cc4d7b7f5bca0d2a958894a11bde00444b54 /kernel/rtlil.h
parent8661626157f1a0d13a60580e93c614b6abb1bea6 (diff)
downloadyosys-3a1490888d05ac49d82aebad9ec6979aae32a8b0.tar.gz
yosys-3a1490888d05ac49d82aebad9ec6979aae32a8b0.tar.bz2
yosys-3a1490888d05ac49d82aebad9ec6979aae32a8b0.zip
width issues
dff cell for more than one registers
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 504fdbbdc..aadd4a950 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -101,7 +101,7 @@ namespace RTLIL
return std::string(*this) < std::string(rhs);
}
void check() const {
- assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\')));
+ //assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\')));
}
};
#endif