diff options
author | SimplyTheOther <simplytheother@gmail.com> | 2020-12-09 15:29:51 +0800 |
---|---|---|
committer | SimplyTheOther <simplytheother@gmail.com> | 2020-12-09 15:29:51 +0800 |
commit | 41c14b45ac604ebd69a6715445cdb10fc5c5ec07 (patch) | |
tree | fb9e6c7e60b9024b1857c0fcf6241c118f2f67f4 /gcc/rust/backend/rust-compile.h | |
parent | 815c9e8b0734d45a6e5b5a7d50f38d4af7120a8c (diff) | |
parent | cef34bd730d80b4664d8633e2cc27a64c5cae246 (diff) | |
download | gcc-41c14b45ac604ebd69a6715445cdb10fc5c5ec07.zip gcc-41c14b45ac604ebd69a6715445cdb10fc5c5ec07.tar.gz gcc-41c14b45ac604ebd69a6715445cdb10fc5c5ec07.tar.bz2 |
Merge branch 'master' of https://github.com/redbrain/gccrs
Diffstat (limited to 'gcc/rust/backend/rust-compile.h')
-rw-r--r-- | gcc/rust/backend/rust-compile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rust/backend/rust-compile.h b/gcc/rust/backend/rust-compile.h index ba03483..88c8318 100644 --- a/gcc/rust/backend/rust-compile.h +++ b/gcc/rust/backend/rust-compile.h @@ -243,7 +243,8 @@ private: std::vector< ::Bexpression *> exprs; std::vector< ::Bstatement *> stmts; std::vector< ::Bvariable *> varBuffer; - std::vector<AST::StructStruct*> structBuffer; + std::vector<AST::StructStruct *> structBuffer; + std::vector<std::vector< ::Bexpression *> > arrayConsStack; // careful these are the vectors we pass into the GCC middle-end std::vector< ::Btype *> type_decls; |