diff options
author | RJ Catalano <rcatalano@macsales.com> | 2016-03-19 04:03:26 +0800 |
---|---|---|
committer | VoR0220 <catalanor0220@gmail.com> | 2016-05-10 00:41:02 +0800 |
commit | 93295ae8f8e92d075584d10ac21374f83c43f759 (patch) | |
tree | b87523b2ed6dcfd19b4edae3aa21f02af12e5165 /libsolidity/codegen | |
parent | a1a2eac5fde0cd6f5aed206958434d655f9a194f (diff) | |
download | dexon-solidity-93295ae8f8e92d075584d10ac21374f83c43f759.tar dexon-solidity-93295ae8f8e92d075584d10ac21374f83c43f759.tar.gz dexon-solidity-93295ae8f8e92d075584d10ac21374f83c43f759.tar.bz2 dexon-solidity-93295ae8f8e92d075584d10ac21374f83c43f759.tar.lz dexon-solidity-93295ae8f8e92d075584d10ac21374f83c43f759.tar.xz dexon-solidity-93295ae8f8e92d075584d10ac21374f83c43f759.tar.zst dexon-solidity-93295ae8f8e92d075584d10ac21374f83c43f759.zip |
got exponents up and working with their inverse, changed a few of the tests....something is working that likely shouldn't be
slight changes to how to flip the rational negative around...still trying to figure it out
tests added
updated tests
odd differences in trying soltest from solc binary, let me know if you can replicate
test not working for odd reason
fixed test problem with fixed literals...still need a way to log this error
broken up the tests, added some, changed some things in types and began compiler work
moar tests and prepping for rebuilding much of the types.cpp file
further fixing
infinite loop still happening but it's somewhere in the fixedPoint methodd
fractional bits needed algo improved! Eliminated 2 errors
Corrected problems with the previous commit. No infinite loops. Actually appear to have corrected an error
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libsolidity/codegen/CompilerUtils.cpp b/libsolidity/codegen/CompilerUtils.cpp index a2c44cd3..15446978 100644 --- a/libsolidity/codegen/CompilerUtils.cpp +++ b/libsolidity/codegen/CompilerUtils.cpp @@ -436,19 +436,6 @@ void CompilerUtils::convertType(Type const& _typeOnStack, Type const& _targetTyp ); break; } - /*case Type::Category::Fixed: - { - if (targetTypeCategory == Type::Category::Integer) - { - //need some guidance here - } - else if (targetTypeCategory == Type::Category::FixedBytes) - { - //need some guidance here - } - else - //need some guidance here - }*/ case Type::Category::Array: { solAssert(targetTypeCategory == stackTypeCategory, ""); |