Merge pull request #7138 from dm4/fix-typo

Fix typo in Yul optimizer
This commit is contained in:
Leonardo 2019-07-22 11:06:35 +02:00 committed by GitHub
commit 535553b523
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/*( /*
This file is part of solidity. This file is part of solidity.
solidity is free software: you can redistribute it and/or modify solidity is free software: you can redistribute it and/or modify

View File

@ -71,7 +71,7 @@ private:
/// Note that this is a purely syntactic property meaning that even if this is false, /// Note that this is a purely syntactic property meaning that even if this is false,
/// the code can still contain calls to functions that contain the msize instruction. /// the code can still contain calls to functions that contain the msize instruction.
bool m_containsMSize = false; bool m_containsMSize = false;
/// If false, storage is guaranteed to be unchanged by the coded under all /// If false, storage is guaranteed to be unchanged by the code under all
/// circumstances. /// circumstances.
bool m_invalidatesStorage = false; bool m_invalidatesStorage = false;
bool m_invalidatesMemory = false; bool m_invalidatesMemory = false;