diff options
author | chriseth <chris@ethereum.org> | 2018-12-04 22:10:47 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-12-04 22:20:23 +0800 |
commit | 0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45 (patch) | |
tree | 4fb8a9d5f39ee3e15998a9dc711a56088c4cc788 | |
parent | 8654f8f6d4cb8f609d5b43df217aff1406acbe6a (diff) | |
download | dexon-solidity-0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45.tar dexon-solidity-0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45.tar.gz dexon-solidity-0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45.tar.bz2 dexon-solidity-0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45.tar.lz dexon-solidity-0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45.tar.xz dexon-solidity-0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45.tar.zst dexon-solidity-0ec7a0e72cbc2ab2f05005a19ff29651a47c1b45.zip |
Move AsmCodeGen.
-rw-r--r-- | libsolidity/CMakeLists.txt | 1 | ||||
-rw-r--r-- | libsolidity/codegen/AsmCodeGen.cpp (renamed from libyul/AsmCodeGen.cpp) | 0 | ||||
-rw-r--r-- | libsolidity/codegen/AsmCodeGen.h (renamed from libyul/AsmCodeGen.h) | 0 | ||||
-rw-r--r-- | libyul/CMakeLists.txt | 1 |
4 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/CMakeLists.txt b/libsolidity/CMakeLists.txt index dc4c6d15..43d61c86 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 index 23bf395d..23bf395d 100644 --- a/libyul/AsmCodeGen.cpp +++ b/libsolidity/codegen/AsmCodeGen.cpp diff --git a/libyul/AsmCodeGen.h b/libsolidity/codegen/AsmCodeGen.h index fd5ac0a1..fd5ac0a1 100644 --- a/libyul/AsmCodeGen.h +++ b/libsolidity/codegen/AsmCodeGen.h diff --git a/libyul/CMakeLists.txt b/libyul/CMakeLists.txt index 7ed84ff5..2dec0a44 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 |