diff options
author | chriseth <chris@ethereum.org> | 2018-12-04 21:11:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-04 21:11:49 +0800 |
commit | 8654f8f6d4cb8f609d5b43df217aff1406acbe6a (patch) | |
tree | f6c984d082b7da3ce34e464f392d7bab8d445301 /libyul/AsmDataForward.h | |
parent | 4e5dabf832ddefc30035e67ad450a12f17c8345a (diff) | |
parent | 99db4e3ff45c2a8d5d9c645774f099b82b7618ec (diff) | |
download | dexon-solidity-8654f8f6d4cb8f609d5b43df217aff1406acbe6a.tar.gz dexon-solidity-8654f8f6d4cb8f609d5b43df217aff1406acbe6a.tar.zst dexon-solidity-8654f8f6d4cb8f609d5b43df217aff1406acbe6a.zip |
Merge pull request #5573 from ethereum/builtins
[Yul] Introduce the concept of builtin functions.
Diffstat (limited to 'libyul/AsmDataForward.h')
-rw-r--r-- | libyul/AsmDataForward.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libyul/AsmDataForward.h b/libyul/AsmDataForward.h index 046c8248..de564425 100644 --- a/libyul/AsmDataForward.h +++ b/libyul/AsmDataForward.h @@ -49,11 +49,4 @@ struct TypedName; using Expression = boost::variant<FunctionalInstruction, FunctionCall, Identifier, Literal>; using Statement = boost::variant<ExpressionStatement, Instruction, Label, StackAssignment, Assignment, VariableDeclaration, FunctionDefinition, If, Switch, ForLoop, Block>; -enum class AsmFlavour -{ - Loose, // no types, EVM instructions as function, jumps and direct stack manipulations - Strict, // no types, EVM instructions as functions, but no jumps and no direct stack manipulations - Yul // same as Strict mode with types -}; - } |