aboutsummaryrefslogtreecommitdiffstats
path: root/libyul/AsmCodeGen.h
diff options
context:
space:
mode:
authorChristian Parpart <christian@ethereum.org>2018-11-21 19:42:34 +0800
committerChristian Parpart <christian@ethereum.org>2018-11-23 21:29:00 +0800
commitec47c8946ba5f78563b7eca2512b3cee68db45b4 (patch)
tree58216cdbf00dba9a61135d85b289ce2af9fc2974 /libyul/AsmCodeGen.h
parent3734f40d315439f8a791967a6adfda8cf9fd1e55 (diff)
downloaddexon-solidity-ec47c8946ba5f78563b7eca2512b3cee68db45b4.tar.gz
dexon-solidity-ec47c8946ba5f78563b7eca2512b3cee68db45b4.tar.zst
dexon-solidity-ec47c8946ba5f78563b7eca2512b3cee68db45b4.zip
Isolating libyul library API into its own namespace `yul`.
Diffstat (limited to 'libyul/AsmCodeGen.h')
-rw-r--r--libyul/AsmCodeGen.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/libyul/AsmCodeGen.h b/libyul/AsmCodeGen.h
index e5e53c0d..fd5ac0a1 100644
--- a/libyul/AsmCodeGen.h
+++ b/libyul/AsmCodeGen.h
@@ -32,9 +32,9 @@ namespace eth
{
class Assembly;
}
-namespace solidity
-{
-namespace assembly
+}
+
+namespace yul
{
struct Block;
@@ -45,12 +45,10 @@ public:
static void assemble(
Block const& _parsedData,
AsmAnalysisInfo& _analysisInfo,
- eth::Assembly& _assembly,
+ dev::eth::Assembly& _assembly,
yul::ExternalIdentifierAccess const& _identifierAccess = yul::ExternalIdentifierAccess(),
bool _useNamedLabelsForFunctions = false
);
};
}
-}
-}