Merge pull request #6096 from ethereum/mark-fixedpoint-unimplemented

Properly issue unimplemented assertion on FixedPointType in type conversion
This commit is contained in:
chriseth 2019-02-26 12:27:50 +01:00 committed by GitHub
commit 472a64454f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -656,6 +656,9 @@ void CompilerUtils::convertType(
chopSignBitsPending = targetIntegerType.isSigned();
}
if (targetTypeCategory == Type::Category::FixedPoint)
solUnimplemented("Not yet implemented - FixedPointType.");
switch (stackTypeCategory)
{
case Type::Category::FixedBytes: