diff options
author | chriseth <c@ethdev.com> | 2016-06-09 06:21:51 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-06-09 06:21:51 +0800 |
commit | d593166d66dba3f95df9d4096f45761ca0f86626 (patch) | |
tree | 6d091d5d5046d4041b74d1dba9c9602b00319fcc /libsolidity/codegen | |
parent | 093790d7c7b7ba68c44beb53b28f54669bb7e69f (diff) | |
parent | 0cb820cf98a2c6b95abcfb42ea5f094c3240a7d4 (diff) | |
download | dexon-solidity-d593166d66dba3f95df9d4096f45761ca0f86626.tar.gz dexon-solidity-d593166d66dba3f95df9d4096f45761ca0f86626.tar.zst dexon-solidity-d593166d66dba3f95df9d4096f45761ca0f86626.zip |
Merge pull request #641 from axic/patch/shift-parser
Trivial shift parser fixes
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 16677093..b973a117 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -1360,6 +1360,8 @@ void ExpressionCompiler::appendShiftOperatorCode(Token::Value _operator) break; case Token::SAR: break; + case Token::SHR: + break; default: BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown shift operator.")); } |