change some parameters

This commit is contained in:
blueloveTH 2024-02-18 23:50:48 +08:00
parent 15a11d0c02
commit 443c87f507
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ struct CodeObject {
std::vector<int> iblocks; // block index for each bytecode
std::vector<LineInfo> lines;
small_vector<PyObject*, 6> consts;
small_vector<PyObject*, 8> consts;
small_vector<StrName, 16> varnames; // local variables
NameDictInt varnames_inv;
small_vector<CodeBlock, 4> blocks;

View File

@ -51,7 +51,7 @@ public:
};
typedef unique_ptr_128<Expr> Expr_;
typedef small_vector<Expr_, 6> Expr_vector;
typedef small_vector<Expr_, 4> Expr_vector;
template<>
struct TriviallyRelocatable<Expr_>{