diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-12-24 09:51:17 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-12-24 09:51:17 +0100 |
commit | edb3c9d0c4f0bc3a108ffebc01f02ff4d7354487 (patch) | |
tree | 602fc633af5de89d2d6d1bda480159318f4aa91d /frontends | |
parent | 48ca1ff9ef5bba939348ceeec75ad310afd9fcf8 (diff) | |
download | yosys-edb3c9d0c4f0bc3a108ffebc01f02ff4d7354487.tar.gz yosys-edb3c9d0c4f0bc3a108ffebc01f02ff4d7354487.tar.bz2 yosys-edb3c9d0c4f0bc3a108ffebc01f02ff4d7354487.zip |
Renamed extend() to extend_xx(), changed most users to extend_u0()
Diffstat (limited to 'frontends')
-rw-r--r-- | frontends/ast/genrtlil.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc index 4a102370b..238da2634 100644 --- a/frontends/ast/genrtlil.cc +++ b/frontends/ast/genrtlil.cc @@ -73,7 +73,7 @@ static RTLIL::SigSpec uniop2rtlil(AstNode *that, std::string type, int result_wi static void widthExtend(AstNode *that, RTLIL::SigSpec &sig, int width, bool is_signed) { if (width <= sig.size()) { - sig.extend(width, is_signed); + sig.extend_u0(width, is_signed); return; } |