aboutsummaryrefslogtreecommitdiffstats
path: root/libyul/AsmCodeGen.h
diff options
context:
space:
mode:
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
);
};
}
-}
-}