diff --git a/libsolidity/CMakeLists.txt b/libsolidity/CMakeLists.txt index dc4c6d156..43d61c86d 100644 --- a/libsolidity/CMakeLists.txt +++ b/libsolidity/CMakeLists.txt @@ -23,6 +23,7 @@ set(sources ast/Types.cpp codegen/ABIFunctions.cpp codegen/ArrayUtils.cpp + codegen/AsmCodeGen.cpp codegen/Compiler.cpp codegen/CompilerContext.cpp codegen/CompilerUtils.cpp diff --git a/libyul/AsmCodeGen.cpp b/libsolidity/codegen/AsmCodeGen.cpp similarity index 100% rename from libyul/AsmCodeGen.cpp rename to libsolidity/codegen/AsmCodeGen.cpp diff --git a/libyul/AsmCodeGen.h b/libsolidity/codegen/AsmCodeGen.h similarity index 100% rename from libyul/AsmCodeGen.h rename to libsolidity/codegen/AsmCodeGen.h diff --git a/libyul/CMakeLists.txt b/libyul/CMakeLists.txt index 7ed84ff5c..2dec0a443 100644 --- a/libyul/CMakeLists.txt +++ b/libyul/CMakeLists.txt @@ -1,7 +1,6 @@ add_library(yul AsmAnalysis.cpp AsmAnalysisInfo.cpp - AsmCodeGen.cpp AsmParser.cpp AsmPrinter.cpp AsmScope.cpp