diff options
author | chriseth <chris@ethereum.org> | 2018-07-11 20:53:34 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-07-11 20:56:53 +0800 |
commit | 7355298c2f4a1283036f7cb6be349a583a4f4111 (patch) | |
tree | 70778e47d84f511bb1cf312fa5264339a54a7005 | |
parent | f3abfa81ad3cdf3cfd0b9e1acf11329a617466a2 (diff) | |
download | dexon-solidity-7355298c2f4a1283036f7cb6be349a583a4f4111.tar.gz dexon-solidity-7355298c2f4a1283036f7cb6be349a583a4f4111.tar.zst dexon-solidity-7355298c2f4a1283036f7cb6be349a583a4f4111.zip |
Fix handling of fixed point types in arithmetics.
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 483faae4..24b8cbfb 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -349,6 +349,10 @@ bool ExpressionCompiler::visit(UnaryOperation const& _unaryOperation) case Token::Inc: // ++ (pre- or postfix) case Token::Dec: // -- (pre- or postfix) solAssert(!!m_currentLValue, "LValue not retrieved."); + solUnimplementedAssert( + _unaryOperation.annotation().type->category() != Type::Category::FixedPoint, + "Not yet implemented - FixedPointType." + ); m_currentLValue->retrieveValue(_unaryOperation.location()); if (!_unaryOperation.isPrefixOperation()) { @@ -1647,12 +1651,12 @@ void ExpressionCompiler::appendOrdinaryBinaryOperatorCode(Token::Value _operator void ExpressionCompiler::appendArithmeticOperatorCode(Token::Value _operator, Type const& _type) { - IntegerType const& type = dynamic_cast<IntegerType const&>(_type); - bool const c_isSigned = type.isSigned(); - if (_type.category() == Type::Category::FixedPoint) solUnimplemented("Not yet implemented - FixedPointType."); + IntegerType const& type = dynamic_cast<IntegerType const&>(_type); + bool const c_isSigned = type.isSigned(); + switch (_operator) { case Token::Add: |