mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Renamed AssemblyStack to YulStack
All files, references, variables, comments, etc. were renamed to YulStack.
This commit is contained in:
committed by
Kamil Śliwak
parent
15c2a33eb3
commit
e1a59397c6
@@ -19,7 +19,7 @@
|
||||
|
||||
#include <test/EVMHost.h>
|
||||
|
||||
#include <libyul/AssemblyStack.h>
|
||||
#include <libyul/YulStack.h>
|
||||
|
||||
#include <libsolidity/interface/OptimiserSettings.h>
|
||||
|
||||
@@ -37,7 +37,7 @@ public:
|
||||
):
|
||||
m_stack(
|
||||
_version,
|
||||
solidity::yul::AssemblyStack::Language::StrictAssembly,
|
||||
solidity::yul::YulStack::Language::StrictAssembly,
|
||||
_optSettings,
|
||||
langutil::DebugInfoSelection::All()
|
||||
),
|
||||
@@ -46,7 +46,7 @@ public:
|
||||
{}
|
||||
solidity::bytes assemble();
|
||||
private:
|
||||
solidity::yul::AssemblyStack m_stack;
|
||||
solidity::yul::YulStack m_stack;
|
||||
std::string m_yulProgram;
|
||||
bool m_optimiseYul;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user