aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/LValue.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-12-08 23:15:35 +0800
committerGitHub <noreply@github.com>2016-12-08 23:15:35 +0800
commit84443eb56022cdb236425b99e253d0b142261372 (patch)
tree4521cefe6c045373644c20b485c0b31c2ee9edd5 /libsolidity/codegen/LValue.cpp
parente7ff4ac810a44cf3bfd58ee4ff198f136f011e2d (diff)
parente7760417e83cf9e313c76cdd44f860aeec1b798c (diff)
downloaddexon-solidity-84443eb56022cdb236425b99e253d0b142261372.tar
dexon-solidity-84443eb56022cdb236425b99e253d0b142261372.tar.gz
dexon-solidity-84443eb56022cdb236425b99e253d0b142261372.tar.bz2
dexon-solidity-84443eb56022cdb236425b99e253d0b142261372.tar.lz
dexon-solidity-84443eb56022cdb236425b99e253d0b142261372.tar.xz
dexon-solidity-84443eb56022cdb236425b99e253d0b142261372.tar.zst
dexon-solidity-84443eb56022cdb236425b99e253d0b142261372.zip
Merge pull request #1351 from ethereum/truncate_bit
Truncate a boolean from calldata into one bit
Diffstat (limited to 'libsolidity/codegen/LValue.cpp')
-rw-r--r--libsolidity/codegen/LValue.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/libsolidity/codegen/LValue.cpp b/libsolidity/codegen/LValue.cpp
index 23fe2d4e..b9e141d8 100644
--- a/libsolidity/codegen/LValue.cpp
+++ b/libsolidity/codegen/LValue.cpp
@@ -223,7 +223,6 @@ void StorageItem::storeValue(Type const& _sourceType, SourceLocation const& _loc
{
solAssert(m_dataType->storageBytes() <= 32, "Invalid storage bytes size.");
solAssert(m_dataType->storageBytes() > 0, "Invalid storage bytes size.");
-
if (m_dataType->storageBytes() == 32)
{
solAssert(m_dataType->sizeOnStack() == 1, "Invalid stack size.");