diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-05-25 07:27:48 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-05-27 03:39:10 +0800 |
commit | 3b75c5b45fdb1bfb49b4e157e031154c57b475f3 (patch) | |
tree | 674ec4c1e3bf9413f4e986819db76aeede77f5d2 /libsolidity/inlineasm/AsmAnalysis.h | |
parent | dda497ca027f5dcd47c6e2b8d624b327c4478adc (diff) | |
download | dexon-solidity-3b75c5b45fdb1bfb49b4e157e031154c57b475f3.tar.gz dexon-solidity-3b75c5b45fdb1bfb49b4e157e031154c57b475f3.tar.zst dexon-solidity-3b75c5b45fdb1bfb49b4e157e031154c57b475f3.zip |
Validate that only basic types are used in Julia
Diffstat (limited to 'libsolidity/inlineasm/AsmAnalysis.h')
-rw-r--r-- | libsolidity/inlineasm/AsmAnalysis.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/inlineasm/AsmAnalysis.h b/libsolidity/inlineasm/AsmAnalysis.h index da4b7608..8244df84 100644 --- a/libsolidity/inlineasm/AsmAnalysis.h +++ b/libsolidity/inlineasm/AsmAnalysis.h @@ -88,6 +88,7 @@ private: bool checkAssignment(assembly::Identifier const& _assignment, size_t _valueSize = size_t(-1)); bool expectDeposit(int _deposit, int _oldHeight, SourceLocation const& _location); Scope& scope(assembly::Block const* _block); + void expectValidType(std::string const& type, SourceLocation const& _location); /// This is used when we enter the body of a function definition. There, the parameters /// and return parameters appear as variables which are already on the stack before |