mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Deposit one stack item for non-value types in inline assembly type checking.
This commit is contained in:
@@ -611,7 +611,7 @@ bool TypeChecker::visit(InlineAssembly const& _inlineAssembly)
|
||||
fatalTypeError(SourceLocation(), "Constant variables not yet implemented for inline assembly.");
|
||||
if (var->isLocalVariable())
|
||||
pushes = var->type()->sizeOnStack();
|
||||
else if (var->type()->isValueType())
|
||||
else if (!var->type()->isValueType())
|
||||
pushes = 1;
|
||||
else
|
||||
pushes = 2; // slot number, intra slot offset
|
||||
|
||||
Reference in New Issue
Block a user