Merge pull request #10008 from ethereum/irBreakingChangesDocs

[Sol->Yul] Adding documentation section about breaking changes when using ir
This commit is contained in:
chriseth 2020-10-12 18:19:10 +02:00 committed by GitHub
commit 466b05398f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.