diff options
author | Claire Wolf <clifford@clifford.at> | 2020-05-07 18:11:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-07 18:11:48 +0200 |
commit | 06104249406972de01d0360df63a32cafcdf2ec5 (patch) | |
tree | 22b352c1ebf2289e7cc61561d233501762742580 /frontends/ast/ast.h | |
parent | 3a985d82851e498ba768d46403c41c05e5897eb4 (diff) | |
parent | 885deb4e88e847e1314b8a67087f72c3809a6995 (diff) | |
download | yosys-06104249406972de01d0360df63a32cafcdf2ec5.tar.gz yosys-06104249406972de01d0360df63a32cafcdf2ec5.tar.bz2 yosys-06104249406972de01d0360df63a32cafcdf2ec5.zip |
Merge pull request #2005 from YosysHQ/claire/fix1990
Add "nowrshmsk" attribute, fix shift-and-mask bit slice write for signed offset
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 3f6329112..8932108e3 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -75,6 +75,7 @@ namespace AST AST_TO_BITS, AST_TO_SIGNED, AST_TO_UNSIGNED, + AST_SELFSZ, AST_CONCAT, AST_REPLICATE, AST_BIT_NOT, @@ -91,6 +92,8 @@ namespace AST AST_SHIFT_RIGHT, AST_SHIFT_SLEFT, AST_SHIFT_SRIGHT, + AST_SHIFTX, + AST_SHIFT, AST_LT, AST_LE, AST_EQ, |