diff options
author | chriseth <c@ethdev.com> | 2015-05-16 00:02:09 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-05-16 00:02:09 +0800 |
commit | dba5ffc280c363b445fb8fcc22737605f2c61498 (patch) | |
tree | 57d5ffc9310b8245973b2ea0649ea5930fdcc7c6 /ExpressionCompiler.h | |
parent | 33e708605881614acefaae2c324732299d7f61fb (diff) | |
download | dexon-solidity-dba5ffc280c363b445fb8fcc22737605f2c61498.tar.gz dexon-solidity-dba5ffc280c363b445fb8fcc22737605f2c61498.tar.zst dexon-solidity-dba5ffc280c363b445fb8fcc22737605f2c61498.zip |
Bare callcode for addresses and contracts.
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index 45a2311e..954e32c8 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -98,8 +98,10 @@ private: void appendHighBitsCleanup(IntegerType const& _typeOnStack); /// Appends code to call a function of the given type with the given arguments. - void appendExternalFunctionCall(FunctionType const& _functionType, std::vector<ASTPointer<Expression const>> const& _arguments, - bool bare = false); + void appendExternalFunctionCall( + FunctionType const& _functionType, + std::vector<ASTPointer<Expression const>> const& _arguments + ); /// Appends code that evaluates the given arguments and moves the result to memory encoded as /// specified by the ABI. The memory offset is expected to be on the stack and is updated by /// this call. If @a _padToWordBoundaries is set to false, all values are concatenated without |