aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/inlineasm/AsmAnalysis.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-07-01 04:14:38 +0800
committerGitHub <noreply@github.com>2017-07-01 04:14:38 +0800
commitb3be9d6fdc195519eccce22f07af5ee42af399ed (patch)
treec13218e7467c03e31af6dc90a560d3f20dc7cf6a /libsolidity/inlineasm/AsmAnalysis.h
parent95f790295564997705f455e3ed18b6c51546a847 (diff)
parent0c92f5394456cb0818a53ceaab05199246b7a274 (diff)
downloaddexon-solidity-b3be9d6fdc195519eccce22f07af5ee42af399ed.tar
dexon-solidity-b3be9d6fdc195519eccce22f07af5ee42af399ed.tar.gz
dexon-solidity-b3be9d6fdc195519eccce22f07af5ee42af399ed.tar.bz2
dexon-solidity-b3be9d6fdc195519eccce22f07af5ee42af399ed.tar.lz
dexon-solidity-b3be9d6fdc195519eccce22f07af5ee42af399ed.tar.xz
dexon-solidity-b3be9d6fdc195519eccce22f07af5ee42af399ed.tar.zst
dexon-solidity-b3be9d6fdc195519eccce22f07af5ee42af399ed.zip
Merge pull request #2445 from ethereum/inlineasm-warn-jump
Warn on JUMP/JUMPI in inline assembly
Diffstat (limited to 'libsolidity/inlineasm/AsmAnalysis.h')
-rw-r--r--libsolidity/inlineasm/AsmAnalysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/inlineasm/AsmAnalysis.h b/libsolidity/inlineasm/AsmAnalysis.h
index 76d2eba1..9b2a8f9c 100644
--- a/libsolidity/inlineasm/AsmAnalysis.h
+++ b/libsolidity/inlineasm/AsmAnalysis.h
@@ -85,7 +85,7 @@ private:
Scope& scope(assembly::Block const* _block);
void expectValidType(std::string const& type, SourceLocation const& _location);
- void warnOnFutureInstruction(solidity::Instruction _instr, SourceLocation const& _location);
+ void warnOnInstructions(solidity::Instruction _instr, SourceLocation const& _location);
int m_stackHeight = 0;
julia::ExternalIdentifierAccess::Resolver m_resolver;