aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/Assembly.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-04-24 23:35:16 +0800
committerchriseth <c@ethdev.com>2015-04-30 17:42:02 +0800
commit3172dbf701f65cdfbdacd5acdd184b8de33c0928 (patch)
tree0d3218e3978e70c18056649acfbb06bfa37cde74 /libsolidity/Assembly.cpp
parent1d4b27322e23e5545e8a9d84809aa3c0766f37dc (diff)
downloaddexon-solidity-3172dbf701f65cdfbdacd5acdd184b8de33c0928.tar
dexon-solidity-3172dbf701f65cdfbdacd5acdd184b8de33c0928.tar.gz
dexon-solidity-3172dbf701f65cdfbdacd5acdd184b8de33c0928.tar.bz2
dexon-solidity-3172dbf701f65cdfbdacd5acdd184b8de33c0928.tar.lz
dexon-solidity-3172dbf701f65cdfbdacd5acdd184b8de33c0928.tar.xz
dexon-solidity-3172dbf701f65cdfbdacd5acdd184b8de33c0928.tar.zst
dexon-solidity-3172dbf701f65cdfbdacd5acdd184b8de33c0928.zip
Move assembly related files to libevmasm and Params.h/.cpp to libevmcore.
Diffstat (limited to 'libsolidity/Assembly.cpp')
-rw-r--r--libsolidity/Assembly.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/Assembly.cpp b/libsolidity/Assembly.cpp
index 8dcee7fb..ccc4bf81 100644
--- a/libsolidity/Assembly.cpp
+++ b/libsolidity/Assembly.cpp
@@ -17,20 +17,20 @@
/**
* @author Lefteris Karapetsas <lefteris@ethdev.com>
* @date 2015
- * Unit tests for Assembly Items from evmcore/Assembly.h
+ * Unit tests for Assembly Items from evmasm/Assembly.h
*/
#include <string>
#include <iostream>
#include <boost/test/unit_test.hpp>
#include <libdevcore/Log.h>
-#include <libevmcore/SourceLocation.h>
+#include <libevmasm/SourceLocation.h>
+#include <libevmasm/Assembly.h>
#include <libsolidity/Scanner.h>
#include <libsolidity/Parser.h>
#include <libsolidity/NameAndTypeResolver.h>
#include <libsolidity/Compiler.h>
#include <libsolidity/AST.h>
-#include <libevmcore/Assembly.h>
using namespace std;
using namespace dev::eth;