SigSpec::remove_const() to return SigSpec&
authorEddie Hung <eddie@fpgeh.com>
Wed, 17 Jul 2019 17:44:11 +0000 (10:44 -0700)
committerEddie Hung <eddie@fpgeh.com>
Wed, 17 Jul 2019 17:44:11 +0000 (10:44 -0700)
kernel/rtlil.cc
kernel/rtlil.h

index 6f50821383ec19a060e348f2acddf14d36d15d1e..5d992ef2d25b1e385a19d85cd39570c83166f52d 100644 (file)
@@ -3297,7 +3297,7 @@ void RTLIL::SigSpec::replace(int offset, const RTLIL::SigSpec &with)
        check();
 }
 
-void RTLIL::SigSpec::remove_const()
+RTLIL::SigSpec& RTLIL::SigSpec::remove_const()
 {
        if (packed())
        {
@@ -3331,6 +3331,7 @@ void RTLIL::SigSpec::remove_const()
        }
 
        check();
+       return *this;
 }
 
 void RTLIL::SigSpec::remove(int offset, int length)
index 8d88cc97c2f41a2d809b51ef18307374ec0bbcaf..b484f5306a85c4046412442709505ab8f8aa34eb 100644 (file)
@@ -767,7 +767,7 @@ public:
        void remove2(const std::set<RTLIL::SigBit> &pattern, RTLIL::SigSpec *other);
 
        void remove(int offset, int length = 1);
-       void remove_const();
+       RTLIL::SigSpec& remove_const();
 
        RTLIL::SigSpec extract(const RTLIL::SigSpec &pattern, const RTLIL::SigSpec *other = NULL) const;
        RTLIL::SigSpec extract(const pool<RTLIL::SigBit> &pattern, const RTLIL::SigSpec *other = NULL) const;