diff --git a/backends/cxxrtl/cxxrtl.h b/backends/cxxrtl/cxxrtl.h index 701510b7f..7b91742e0 100644 --- a/backends/cxxrtl/cxxrtl.h +++ b/backends/cxxrtl/cxxrtl.h @@ -921,7 +921,7 @@ value sshr_uu(const value &a, const value &b) { template value sshr_su(const value &a, const value &b) { - return a.template shr(b).template scast(); + return a.template sshr(b).template scast(); } template