aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm/AsmData.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-12-05 21:44:20 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-12-05 22:52:11 +0800
commit745eefa36f9bc04c91cb28e81bd16f8d01a11c7c (patch)
treef6a3497b5355de175f6535c14c1996052654ce1e /libsolidity/inlineasm/AsmData.h
parenta08d853bbb0d5f052cc264a84340bde577f54c4e (diff)
downloaddexon-solidity-745eefa36f9bc04c91cb28e81bd16f8d01a11c7c.tar
dexon-solidity-745eefa36f9bc04c91cb28e81bd16f8d01a11c7c.tar.gz
dexon-solidity-745eefa36f9bc04c91cb28e81bd16f8d01a11c7c.tar.bz2
dexon-solidity-745eefa36f9bc04c91cb28e81bd16f8d01a11c7c.tar.lz
dexon-solidity-745eefa36f9bc04c91cb28e81bd16f8d01a11c7c.tar.xz
dexon-solidity-745eefa36f9bc04c91cb28e81bd16f8d01a11c7c.tar.zst
dexon-solidity-745eefa36f9bc04c91cb28e81bd16f8d01a11c7c.zip
Split Instruction and FunctionalInstruction in Julia
Diffstat (limited to 'libsolidity/inlineasm/AsmData.h')
-rw-r--r--libsolidity/inlineasm/AsmData.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/inlineasm/AsmData.h b/libsolidity/inlineasm/AsmData.h
index e1753af4..11e56fae 100644
--- a/libsolidity/inlineasm/AsmData.h
+++ b/libsolidity/inlineasm/AsmData.h
@@ -60,7 +60,7 @@ struct StackAssignment { SourceLocation location; Identifier variableName; };
/// the same amount of items as the number of variables.
struct Assignment { SourceLocation location; std::vector<Identifier> variableNames; std::shared_ptr<Statement> value; };
/// Functional instruction, e.g. "mul(mload(20:u256), add(2:u256, x))"
-struct FunctionalInstruction { SourceLocation location; Instruction instruction; std::vector<Statement> arguments; };
+struct FunctionalInstruction { SourceLocation location; solidity::Instruction instruction; std::vector<Statement> arguments; };
struct FunctionCall { SourceLocation location; Identifier functionName; std::vector<Statement> arguments; };
/// Block-scope variable declaration ("let x:u256 := mload(20:u256)"), non-hoisted
struct VariableDeclaration { SourceLocation location; TypedNameList variables; std::shared_ptr<Statement> value; };