[Sol->Yul] Adding documentation section about breaking changes when using ir

Co-authored-by: chriseth <chris@ethereum.org>
This commit is contained in:
Djordje Mijovic 2020-10-12 14:48:59 +02:00
parent bc97c3e1ce
commit 1c142c500a
2 changed files with 7 additions and 1 deletions

View File

@ -85,7 +85,7 @@ else:
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ['_build', 'contracts', 'types', 'examples', 'grammar']
exclude_patterns = ['_build', 'contracts', 'types', 'examples', 'grammar', 'ir']
# The reST default role (used for this markup: `text`) to use for all
# documents.

View File

@ -0,0 +1,6 @@
********************************
Solidity IR-based Codegen Changes
********************************
This section highlights the main differences between the old and the IR-based codegen,
along with the reasoning behind the changes and how to update affected code.