diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-11-09 09:18:10 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-11-15 18:30:33 +0800 |
commit | 702ab4cb4f9344ce6d8fb1311db7c9fc94431386 (patch) | |
tree | 091a5f27e1f39cd3d44efff7d2229d5c0d844775 /docs/control-structures.rst | |
parent | bee926bf3f2d9f56103547d1add5463ab21c5f8e (diff) | |
download | dexon-solidity-702ab4cb4f9344ce6d8fb1311db7c9fc94431386.tar.gz dexon-solidity-702ab4cb4f9344ce6d8fb1311db7c9fc94431386.tar.zst dexon-solidity-702ab4cb4f9344ce6d8fb1311db7c9fc94431386.zip |
Document inline assembly ErrorTag
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index bbb90e6a..351e4c91 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -716,6 +716,10 @@ will have a wrong impression about the stack height at label ``two``: three: } +.. note:: + + ``ErrorTag`` is a pre-defined label. Jumping to this location will always + result in an invalid jump, effectively aborting execution of the code. Declaring Assembly-Local Variables ---------------------------------- |