diff options
author | Dag Lem <dag@nimrod.no> | 2022-11-12 08:48:25 +0100 |
---|---|---|
committer | Dag Lem <dag@nimrod.no> | 2022-11-12 08:48:25 +0100 |
commit | bab88630c28b43851162772c2ce35666357d8933 (patch) | |
tree | 96e2dc4f9c1e552281b4f2b8260ced1783f856d0 /frontends/ast/ast.h | |
parent | a217450524e21222d8d32bd448f1ea2291685258 (diff) | |
download | yosys-bab88630c28b43851162772c2ce35666357d8933.tar.gz yosys-bab88630c28b43851162772c2ce35666357d8933.tar.bz2 yosys-bab88630c28b43851162772c2ce35666357d8933.zip |
Support for arrays with swapped ranges within structs
This also corrects the implementation of C type arrays within structs.
Fixes #3550
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 80497c131..142ec0801 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -203,7 +203,7 @@ namespace AST // if this is a multirange memory then this vector contains offset and length of each dimension std::vector<int> multirange_dimensions; - std::vector<bool> multirange_swapped; // true if range is swapped, not used for structs + std::vector<bool> multirange_swapped; // true if range is swapped // this is set by simplify and used during RTLIL generation AstNode *id2ast; |