aboutsummaryrefslogtreecommitdiffstats
path: root/libyul/backends/evm/AbstractAssembly.h
diff options
context:
space:
mode:
authorChristian Parpart <christian@ethereum.org>2018-10-15 17:58:51 +0800
committerChristian Parpart <christian@ethereum.org>2018-10-15 17:58:51 +0800
commit1304361b9c48438d5c55903492b5f11c3dac73e5 (patch)
treea8501e929c94a7d36e69a6350e98c68556fe9038 /libyul/backends/evm/AbstractAssembly.h
parent9a4bec7e474a310c7f93ff3b84928e0e9ba9cce6 (diff)
downloaddexon-solidity-1304361b9c48438d5c55903492b5f11c3dac73e5.tar.gz
dexon-solidity-1304361b9c48438d5c55903492b5f11c3dac73e5.tar.zst
dexon-solidity-1304361b9c48438d5c55903492b5f11c3dac73e5.zip
Renaming namespace dev::julia to dev::yul.
Diffstat (limited to 'libyul/backends/evm/AbstractAssembly.h')
-rw-r--r--libyul/backends/evm/AbstractAssembly.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libyul/backends/evm/AbstractAssembly.h b/libyul/backends/evm/AbstractAssembly.h
index b6818923..d75058f7 100644
--- a/libyul/backends/evm/AbstractAssembly.h
+++ b/libyul/backends/evm/AbstractAssembly.h
@@ -38,7 +38,7 @@ struct Instruction;
struct Identifier;
}
}
-namespace julia
+namespace yul
{
///
@@ -106,7 +106,7 @@ struct ExternalIdentifierAccess
/// Resolve an external reference given by the identifier in the given context.
/// @returns the size of the value (number of stack slots) or size_t(-1) if not found.
Resolver resolve;
- using CodeGenerator = std::function<void(solidity::assembly::Identifier const&, IdentifierContext, julia::AbstractAssembly&)>;
+ using CodeGenerator = std::function<void(solidity::assembly::Identifier const&, IdentifierContext, yul::AbstractAssembly&)>;
/// Generate code for retrieving the value (rvalue context) or storing the value (lvalue context)
/// of an identifier. The code should be appended to the assembly. In rvalue context, the value is supposed
/// to be put onto the stack, in lvalue context, the value is assumed to be at the top of the stack.