}
+RTLIL::SigSpec RTLIL::SigSpec::repeat(int num) const
+{
+ RTLIL::SigSpec sig;
+ for (int i = 0; i < num; i++)
+ sig.append(*this);
+ return sig;
+}
+
void RTLIL::SigSpec::check() const
{
if (packed())
void extend(int width, bool is_signed = false);
void extend_u0(int width, bool is_signed = false);
+ RTLIL::SigSpec repeat(int num) const;
+
bool operator <(const RTLIL::SigSpec &other) const;
bool operator ==(const RTLIL::SigSpec &other) const;
inline bool operator !=(const RTLIL::SigSpec &other) const { return !(*this == other); }